diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 659d038..0673a4c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,11 +1,5 @@ name: Deploy to GitHub Pages - -on: - push: - branches: 'main' - - jobs: build_site: runs-on: ubuntu-latest diff --git a/src/lib/component/Textarea.svelte b/src/lib/component/Textarea.svelte index cad3b2a..6818d0e 100644 --- a/src/lib/component/Textarea.svelte +++ b/src/lib/component/Textarea.svelte @@ -2,7 +2,8 @@ export let text: string; export let bindValue: string | number | undefined; export let forValue: string; - export let required: boolean = false;; + export let required: boolean = false; + export let disabled: boolean = false;
@@ -10,6 +11,7 @@