diff --git a/wherehows-web/app/templates/components/dataset-comments.hbs b/wherehows-web/app/templates/components/dataset-comments.hbs index e851c23011..a3521123c0 100644 --- a/wherehows-web/app/templates/components/dataset-comments.hbs +++ b/wherehows-web/app/templates/components/dataset-comments.hbs @@ -13,7 +13,7 @@ {{#each stream.comments as |comment|}} {{#stream.item comment=comment}} - {{{comment.text}}} + {{comment.text}} {{/stream.item}} {{/each}} diff --git a/wherehows-web/app/templates/components/notifications-service.hbs b/wherehows-web/app/templates/components/notifications-service.hbs index 06c750a45c..17521fc486 100644 --- a/wherehows-web/app/templates/components/notifications-service.hbs +++ b/wherehows-web/app/templates/components/notifications-service.hbs @@ -7,7 +7,7 @@ onClose=(action 'dismissModal' target=service)}} {{#if service.modal.props.isHtml}} - {{{service.modal.props.content}}} + {{service.modal.props.content}} {{else}} {{service.modal.props.content}} {{/if}} diff --git a/wherehows-web/app/templates/components/schema-comment.hbs b/wherehows-web/app/templates/components/schema-comment.hbs index 08633ffdb7..4020148d0e 100644 --- a/wherehows-web/app/templates/components/schema-comment.hbs +++ b/wherehows-web/app/templates/components/schema-comment.hbs @@ -26,7 +26,7 @@ {{#each stream.comments as |comment|}} {{#stream.item comment=comment}} - {{{comment.html}}} + {{comment.html}} {{/stream.item}} {{/each}} diff --git a/wherehows-web/app/templates/scripts.hbs b/wherehows-web/app/templates/scripts.hbs index 2f672cf9f8..b140904f7d 100644 --- a/wherehows-web/app/templates/scripts.hbs +++ b/wherehows-web/app/templates/scripts.hbs @@ -61,7 +61,7 @@ - {{{script.scriptName}}} + {{script.scriptName}} {{ script.scriptPath }} @@ -111,4 +111,4 @@ {{outlet}} - \ No newline at end of file + diff --git a/wherehows-web/app/templates/search.hbs b/wherehows-web/app/templates/search.hbs index d1600d194c..be9476842f 100644 --- a/wherehows-web/app/templates/search.hbs +++ b/wherehows-web/app/templates/search.hbs @@ -74,26 +74,26 @@ {{#if model.isMetrics}} {{#link-to 'metrics.metric' dataset.id}} - {{{dataset.name}}} + {{dataset.name}} {{/link-to}} {{else}} {{#link-to 'datasets.dataset' dataset.id}} - {{{dataset.name}}} + {{dataset.name}} {{/link-to}} {{/if}}

- {{{ dataset.urn }}} + {{ dataset.urn }}

{{#if dataset.source}} -

source: {{{ dataset.source }}}

+

source: {{ dataset.source }}

{{else}}

source: Metric

{{/if}}
- {{{ dataset.schema }}} + {{ dataset.schema }}