Split doctors-layer into 'doctors', 'physiotherapist' and 'dentist' layers

This commit is contained in:
Pieter Vander Vennet 2022-12-05 23:14:07 +01:00
parent 0e4fad5f3c
commit a28b610bbf
12 changed files with 251 additions and 120 deletions

View file

@ -684,9 +684,8 @@ export default class TagRenderingConfig {
let condition: BaseUIElement = undefined
if (this.condition !== undefined && !this.condition?.matchesProperties({})) {
condition = new Combine([
"Only visible if ",
new FixedUiElement(this.condition.asHumanString(false, false, {})).SetClass("code"),
" is shown",
"This tagrendering is only visible in the popup if the following condition is met:",
new FixedUiElement(this.condition.asHumanString(false, false, {})).SetClass("code")
])
}