<img width="622" alt="Screenshot 2023-12-06 at 12 10 09 PM" src="https://github.com/discourse/discourse-data-explorer/assets/50783505/5a6fb0b2-829c-4af3-93c9-91676b78ab59">
20 lines
585 B
Plaintext
20 lines
585 B
Plaintext
import DModal from "discourse/components/d-modal";
|
|
import htmlSafe from "discourse-common/helpers/html-safe";
|
|
import i18n from "discourse-common/helpers/i18n";
|
|
|
|
const QueryHelp = <template>
|
|
<DModal
|
|
@title={{i18n "explorer.help.modal_title"}}
|
|
@closeModal={{@closeModal}}
|
|
>
|
|
<:body>
|
|
{{htmlSafe (i18n "explorer.help.auto_resolution")}}
|
|
{{htmlSafe (i18n "explorer.help.custom_params")}}
|
|
{{htmlSafe (i18n "explorer.help.default_values")}}
|
|
{{htmlSafe (i18n "explorer.help.data_types")}}
|
|
</:body>
|
|
</DModal>
|
|
</template>;
|
|
|
|
export default QueryHelp;
|