mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 03:27:54 +00:00
UI: Remove usage of htmlSafe (#20235)
This commit is contained in:
@@ -5,7 +5,6 @@
|
||||
|
||||
import Component from '@ember/component';
|
||||
import { computed } from '@ember/object';
|
||||
import { htmlSafe } from '@ember/template';
|
||||
import layout from '../templates/components/confirm';
|
||||
import { next } from '@ember/runloop';
|
||||
|
||||
@@ -34,7 +33,7 @@ export default Component.extend({
|
||||
height: 0,
|
||||
focusTrigger: null,
|
||||
style: computed('height', function () {
|
||||
return htmlSafe(`height: ${this.height}px`);
|
||||
return `height: ${this.height}px`;
|
||||
}),
|
||||
wormholeReference: null,
|
||||
wormholeId: computed('elementId', function () {
|
||||
|
||||
Reference in New Issue
Block a user