Skip to content

Commit

Permalink
Add ability to change column colors in DLT file
Browse files Browse the repository at this point in the history
Add column color change functionality and ability to show or hide
columns from DLT file only.
  • Loading branch information
sudeeptarlekar committed Jul 14, 2023
1 parent 48caebb commit 5e8c584
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions application/client/src/app/schema/ids.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ export const TOOLBAR_TAB_CHART = unique();
export const SIDEBAR_TAB_OBSERVING = unique();
export const SIDEBAR_TAB_ATTACHMENTS = unique();
export const SIDEBAR_TAB_FILTERS = unique();
export const SIDEBAR_TAB_SETTINGS = unique();
13 changes: 13 additions & 0 deletions application/client/src/app/service/session/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,19 @@ export class Session extends Base {
},
},
});
this._sidebar.add({
uuid: ids.SIDEBAR_TAB_SETTINGS,
name: 'Settings',
active: false,
closable: false,
uppercaseTitle: true,
content: {
factory: components.get('app-views-settings'),
inputs: {
session: this,
}
}
})
}

public init(): Promise<string> {
Expand Down

0 comments on commit 5e8c584

Please sign in to comment.