css refactor
This commit is contained in:
@@ -10,9 +10,12 @@
|
||||
import { t } from '../../lib/i18n';
|
||||
|
||||
/** @type {Object} */
|
||||
export let documentation = null;
|
||||
export let onSave = async (doc) => {};
|
||||
export let onCancel = () => {};
|
||||
let {
|
||||
content = "",
|
||||
type = 'markdown',
|
||||
format = 'text',
|
||||
} = $props();
|
||||
|
||||
|
||||
let isSaving = false;
|
||||
|
||||
|
||||
@@ -12,8 +12,11 @@
|
||||
import { requestApi } from '../../lib/api';
|
||||
|
||||
/** @type {Array} */
|
||||
export let providers = [];
|
||||
export let onSave = () => {};
|
||||
let {
|
||||
provider,
|
||||
config = {},
|
||||
} = $props();
|
||||
|
||||
|
||||
let editingProvider = null;
|
||||
let showForm = false;
|
||||
|
||||
@@ -3,7 +3,10 @@
|
||||
<!-- @PURPOSE: Displays the results of an LLM-based dashboard validation task. -->
|
||||
|
||||
<script>
|
||||
export let result = null;
|
||||
let {
|
||||
report,
|
||||
} = $props();
|
||||
|
||||
|
||||
function getStatusColor(status) {
|
||||
switch (status) {
|
||||
|
||||
Reference in New Issue
Block a user