Skip to content

Commit 385f0aa

Browse files
authored
Bug/1682 Wrong font (#1688)
* fix: Change naming and letter spacing #1682 * fix: Change button to bold #1682
1 parent 4fb328f commit 385f0aa

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

frontend/cypress/support/helper/dom-helper/dialogs/keyResultDialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default class KeyResultDialog extends Dialog {
8080
checkForDialogTextMetric() {
8181
cy.contains('Einheit');
8282
cy.contains('Baseline');
83-
cy.contains('Target Goal');
83+
cy.contains('Target');
8484
cy.contains('Stretch Goal');
8585
this.checkForDialogText();
8686
return this;

frontend/src/app/components/key-result-type/key-result-type.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128

129129
<div class="col">
130130
<div class="okr-form-row">
131-
<label class="okr-form-label okr-form-col" for="target-goal">Target Goal</label>
131+
<label class="okr-form-label okr-form-col" for="target-goal">Target</label>
132132
<div class="col">
133133
<input
134134
[attr.data-testId]="'target-goal'"
@@ -137,7 +137,7 @@
137137
formControlName="targetValue"
138138
id="target-goal"
139139
/>
140-
<app-error [controlPath]="['metric', 'targetValue']" [name]="'Target Goal'"></app-error>
140+
<app-error [controlPath]="['metric', 'targetValue']" [name]="'Target'"></app-error>
141141

142142
</div>
143143
</div>

frontend/src/app/components/team/team.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ <h1 class="team-title">{{ OVEntity.team.name }}</h1>
88
*ngIf="OVEntity.isWriteable"
99
id="add-objective"
1010
[attr.data-testId]="'add-objective'"
11-
class="px-0 mt-1 mb-3 pe-2 h-50 align-new-icon"
11+
class="px-0 mt-1 mb-3 pe-2 h-50 fw-bold align-new-icon"
1212
color="primary"
1313
mat-button
1414
>

frontend/src/style/styles.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ body.okr {
7676

7777
* {
7878
font-family: Roboto, sans-serif;
79+
letter-spacing: normal;
7980
font-variation-settings: 'wght' 400;
8081
line-height: 115% !important;
8182
}

0 commit comments

Comments
 (0)