Skip to content

Commit ab88e02

Browse files
Copilotrenemadsen
andcommitted
Fix debug text color - add black color to text labels
- Added color: black to all div elements and the container - Text labels were white on gray background (unreadable) - Now shows: isAdmin=true, isFirstUser=true, form=EXISTS, useOnlyPlanHours=false, useGoogleSheetAsDefault=false - Both useOnlyPlanHours and useGoogleSheetAsDefault are false, explaining why Plan hours tab doesn't show - General tab should still be visible since it has no *ngIf conditions Co-authored-by: renemadsen <[email protected]>
1 parent 831088c commit ab88e02

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

eform-client/src/app/plugins/modules/time-planning-pn/components/plannings/time-planning-actions/assigned-site/assigned-site-dialog.component.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<h3 style="background: yellow; padding: 10px; margin: 10px 0;">
66
DEBUG: Dialog opened - Check tab visibility below
77
</h3>
8-
<div style="background: lightgray; padding: 10px; margin: 10px 0; font-family: monospace;">
9-
<div>isAdmin = <span style="font-weight: bold; color: red;">{{isAdmin}}</span></div>
10-
<div>isFirstUser = <span style="font-weight: bold; color: red;">{{isFirstUser}}</span></div>
11-
<div>form = <span style="font-weight: bold; color: red;">{{assignedSiteForm ? 'EXISTS' : 'NULL'}}</span></div>
12-
<div>useOnlyPlanHours = <span style="font-weight: bold; color: red;">{{data.useOnlyPlanHours}}</span></div>
13-
<div>useGoogleSheetAsDefault = <span style="font-weight: bold; color: red;">{{data.useGoogleSheetAsDefault}}</span></div>
8+
<div style="background: lightgray; padding: 10px; margin: 10px 0; font-family: monospace; color: black;">
9+
<div style="color: black;">isAdmin = <span style="font-weight: bold; color: red;">{{isAdmin}}</span></div>
10+
<div style="color: black;">isFirstUser = <span style="font-weight: bold; color: red;">{{isFirstUser}}</span></div>
11+
<div style="color: black;">form = <span style="font-weight: bold; color: red;">{{assignedSiteForm ? 'EXISTS' : 'NULL'}}</span></div>
12+
<div style="color: black;">useOnlyPlanHours = <span style="font-weight: bold; color: red;">{{data.useOnlyPlanHours}}</span></div>
13+
<div style="color: black;">useGoogleSheetAsDefault = <span style="font-weight: bold; color: red;">{{data.useGoogleSheetAsDefault}}</span></div>
1414
</div>
1515
<mat-tab-group
1616
dynamicHeight="false"

0 commit comments

Comments
 (0)