@@ -164,15 +164,15 @@ export default {
164164 const shouldShowName = this .displayName && this .uid !== this .displayName
165165
166166 if (time > 18 ) {
167- return { text: shouldShowName ? t (' dashboard' , ' Good evening, {name}' , { name: this .displayName }) : t (' dashboard' , ' Good evening' ) }
167+ return { text: shouldShowName ? t (' dashboard' , ' Good evening, {name}' , { name: this .displayName }, undefined , { escape : false } ) : t (' dashboard' , ' Good evening' ) }
168168 }
169169 if (time > 12 ) {
170- return { text: shouldShowName ? t (' dashboard' , ' Good afternoon, {name}' , { name: this .displayName }) : t (' dashboard' , ' Good afternoon' ) }
170+ return { text: shouldShowName ? t (' dashboard' , ' Good afternoon, {name}' , { name: this .displayName }, undefined , { escape : false } ) : t (' dashboard' , ' Good afternoon' ) }
171171 }
172172 if (time > 5 ) {
173- return { text: shouldShowName ? t (' dashboard' , ' Good morning, {name}' , { name: this .displayName }) : t (' dashboard' , ' Good morning' ) }
173+ return { text: shouldShowName ? t (' dashboard' , ' Good morning, {name}' , { name: this .displayName }, undefined , { escape : false } ) : t (' dashboard' , ' Good morning' ) }
174174 }
175- return { text: shouldShowName ? t (' dashboard' , ' Good night, {name}' , { name: this .displayName }) : t (' dashboard' , ' Good night' ) }
175+ return { text: shouldShowName ? t (' dashboard' , ' Good night, {name}' , { name: this .displayName }, undefined , { escape : false } ) : t (' dashboard' , ' Good night' ) }
176176 },
177177 isActive () {
178178 return (panel ) => this .layout .indexOf (panel .id ) > - 1
0 commit comments