-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use keyAnalysisDisplayProperty from user settings for analytics …
…components (#1600) Fix for these components and functions from analytics and dv plugin that respect the keyAnalysisDisplayProperty: apiFetchDimensions, visualization, OrgUnitDimension, DynamicDimension Refactor: * remove hardcoded displayNameProperty that was together with system settings (not where it belonged either) * remove other userSettings request and use the useUserSettings hook instead * Messages Item - move style to css module
- Loading branch information
1 parent
2fc062c
commit 35eeb69
Showing
15 changed files
with
236 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export const userSettingsQuery = { | ||
resource: 'userSettings', | ||
params: { | ||
key: ['keyDbLocale', 'keyUiLocale', 'keyAnalysisDisplayProperty'], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.list { | ||
list-style-type: none; | ||
padding-left: 0; | ||
} | ||
|
||
.seeAll { | ||
text-align: center; | ||
font-size: 13px; | ||
margin-bottom: 5px; | ||
} | ||
|
||
.sender { | ||
font-size: 13px; | ||
line-height: 15px; | ||
margin: 0; | ||
color: var(--colors-grey800); | ||
} | ||
|
||
.snippet { | ||
color: var(--colors-grey800); | ||
font-size: 13px; | ||
line-height: 15px; | ||
max-height: 30px; | ||
overflow: hidden; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.