mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-24 13:26:45 +08:00
Bumps the lint group with 4 updates in the / directory: [@discourse/lint-configs](https://github.com/discourse/lint-configs), [ember-template-lint](https://github.com/ember-template-lint/ember-template-lint), [eslint](https://github.com/eslint/eslint) and [stylelint](https://github.com/stylelint/stylelint). Updates `@discourse/lint-configs` from 2.22.0 to 2.28.0 - [Commits](https://github.com/discourse/lint-configs/commits) Updates `ember-template-lint` from 7.7.0 to 7.9.1 - [Release notes](https://github.com/ember-template-lint/ember-template-lint/releases) - [Changelog](https://github.com/ember-template-lint/ember-template-lint/blob/master/CHANGELOG.md) - [Commits](https://github.com/ember-template-lint/ember-template-lint/commits) Updates `eslint` from 9.27.0 to 9.32.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v9.27.0...v9.32.0) Updates `stylelint` from 16.19.1 to 16.22.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/16.19.1...16.22.0) --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Discourse CI <ci@ci.invalid> Co-authored-by: Jarek Radosz <jarek@cvx.dev>
43 lines
1.4 KiB
Text
Vendored
43 lines
1.4 KiB
Text
Vendored
/* eslint-disable ember/no-test-import-export */
|
|
|
|
import { Textarea } from "@ember/component";
|
|
import { htmlSafe } from "@ember/template";
|
|
import RouteTemplate from "ember-route-template";
|
|
import ConditionalLoadingSpinner from "discourse/components/conditional-loading-spinner";
|
|
import DButton from "discourse/components/d-button";
|
|
import DPageSubheader from "discourse/components/d-page-subheader";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
export default RouteTemplate(
|
|
<template>
|
|
<DPageSubheader
|
|
@descriptionLabel={{i18n
|
|
"admin.config.email.sub_pages.advanced_test.header_description"
|
|
}}
|
|
/>
|
|
|
|
<div class="email-advanced-test">
|
|
<label for="email">{{i18n "admin.email.advanced_test.email"}}</label>
|
|
<Textarea name="email" @value={{@controller.email}} class="email-body" />
|
|
<DButton
|
|
@action={{@controller.run}}
|
|
@label="admin.email.advanced_test.run"
|
|
/>
|
|
</div>
|
|
|
|
<ConditionalLoadingSpinner @condition={{@controller.loading}}>
|
|
{{#if @controller.format}}
|
|
<hr />
|
|
<div class="text">
|
|
<h3>{{i18n "admin.email.advanced_test.text"}}</h3>
|
|
<pre class="full-reason">{{htmlSafe @controller.text}}</pre>
|
|
</div>
|
|
<hr />
|
|
<div class="elided">
|
|
<h3>{{i18n "admin.email.advanced_test.elided"}}</h3>
|
|
<pre class="full-reason">{{htmlSafe @controller.elided}}</pre>
|
|
</div>
|
|
{{/if}}
|
|
</ConditionalLoadingSpinner>
|
|
</template>
|
|
);
|