Skip to content

Commit

Permalink
label buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdallaAbdelhadi committed Nov 26, 2024
1 parent 3daea4c commit 923bdba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<button
*ngIf="isPhaseReady()"
mat-icon-button
matTooltip="{{ action.tooltip }}"
matTooltip="{{ action.tooltipReady }}"
matTooltipClass="custom-tooltip"
[color]="action.color"
(click)="emitClickedEvent()"
Expand All @@ -14,7 +14,7 @@
<button
*ngIf="isPhaseInit()"
mat-icon-button
matTooltip="{{ action.tooltip }}"
matTooltip="{{ action.tooltipInit }}"
matTooltipClass="custom-tooltip"
[color]="action.color"
(click)="emitClickedEvent()"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ export const defaultConfig: TableConfig = {
name: 'start-stop',
tooltipInit: $localize`Stop this notebook server`,
tooltipReady: $localize`Start this notebook server`,
// tooltip: $localize`test`,
color: '',
field: 'startStopAction',
iconInit: 'material:stop',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<lib-loading-spinner class="center-flex"></lib-loading-spinner>
</div>
<ng-container *ngIf="notebookInfoLoaded">
<lib-title-actions-toolbar title="Notebooks" [buttons]="buttons" i18n-title>
<lib-title-actions-toolbar title="New Notebook" [buttons]="buttons" i18n-title>
</lib-title-actions-toolbar>

<!--scrollable page content-->
Expand Down

0 comments on commit 923bdba

Please sign in to comment.