Skip to content

Commit

Permalink
Updated migration list table columns width (#26014)
Browse files Browse the repository at this point in the history
* Add CodeQL Analysis workflow (#10195)

* Add CodeQL Analysis workflow

* Fix path

* Update migration list table columns width

* Update migration list table columns width

---------

Co-authored-by: Justin Hutchings <jhutchings1@users.noreply.github.com>
Co-authored-by: Akshika Gupta <akshikagupta@microsoft.com>
  • Loading branch information
3 people authored Nov 5, 2024
1 parent 576079b commit 66bd514
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions extensions/sql-migration/src/dashboard/migrationsListTab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,8 @@ export class MigrationsListTab extends TabBase<MigrationsListTab> {
ariaLabel: loc.MIGRATION_STATUS,
CSSStyles: { 'margin-left': '10px' },
data: [],
forceFitColumns: azdata.ColumnSizingMode.AutoFit,
forceFitColumns: azdata.ColumnSizingMode.DataFit,
width: 1530,
height: '500px',
columns: [
<azdata.HyperlinkColumn>{
Expand All @@ -503,7 +504,7 @@ export class MigrationsListTab extends TabBase<MigrationsListTab> {
headerCssClass: headerCssStyles,
name: loc.STATUS_COLUMN,
value: 'status',
width: 160,
width: 180,
type: azdata.ColumnType.hyperlink,
toolTip: loc.STATUS_TOOL_TIP,
},
Expand All @@ -530,7 +531,7 @@ export class MigrationsListTab extends TabBase<MigrationsListTab> {
headerCssClass: headerCssStyles,
name: loc.AZURE_SQL_TARGET,
value: 'targetType',
width: 120,
width: 160,
type: azdata.ColumnType.text,
toolTip: loc.AZURE_SQL_TARGET_TOOL_TIP,
},
Expand Down Expand Up @@ -566,7 +567,7 @@ export class MigrationsListTab extends TabBase<MigrationsListTab> {
headerCssClass: headerCssStyles,
name: loc.START_TIME,
value: 'startTime',
width: 115,
width: 160,
type: azdata.ColumnType.text,
toolTip: loc.START_TIME_TOOL_TIP,
},
Expand All @@ -575,7 +576,7 @@ export class MigrationsListTab extends TabBase<MigrationsListTab> {
headerCssClass: headerCssStyles,
name: loc.FINISH_TIME,
value: 'finishTime',
width: 115,
width: 160,
type: azdata.ColumnType.text,
toolTip: loc.FINISH_TIME_TOOL_TIP,
},
Expand Down

0 comments on commit 66bd514

Please sign in to comment.