Added plausible, adjusted label

This commit is contained in:
Luke Hagar
2024-07-10 15:06:34 +00:00
parent bf0b0da4ae
commit 2d6c042991
4 changed files with 3523 additions and 4 deletions

View File

@@ -21,8 +21,8 @@
"@tailwindcss/typography": "0.5.13", "@tailwindcss/typography": "0.5.13",
"@types/eslint": "^8.56.10", "@types/eslint": "^8.56.10",
"@types/node": "20.12.12", "@types/node": "20.12.12",
"@typescript-eslint/eslint-plugin": "^7.15.0", "@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.15.0", "@typescript-eslint/parser": "^7.16.0",
"autoprefixer": "10.4.19", "autoprefixer": "10.4.19",
"dexie": "^4.0.7", "dexie": "^4.0.7",
"eslint": "^8.57.0", "eslint": "^8.57.0",

3518
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,7 @@
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" /> <link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" /> <meta name="viewport" content="width=device-width" />
<script defer data-domain="openapi.gg" src="https://events.plygrnd.org/js/script.js"></script>
%sveltekit.head% %sveltekit.head%
</head> </head>
<body data-sveltekit-preload-data="hover" class="h-full" data-theme="skeleton"> <body data-sveltekit-preload-data="hover" class="h-full" data-theme="skeleton">

View File

@@ -45,7 +45,7 @@
</label> </label>
<label class="label flex flex-col"> <label class="label flex flex-col">
<span>OperationId</span> <span>Operation ID</span>
{#if $selectedSpec.spec.paths[$page.params.pathName][$page.params.method].operationId !== undefined} {#if $selectedSpec.spec.paths[$page.params.pathName][$page.params.method].operationId !== undefined}
<input <input
type="text" type="text"
@@ -60,7 +60,7 @@
on:click={() => on:click={() =>
($selectedSpec.spec.paths[$page.params.pathName][$page.params.method].operationId = '')} ($selectedSpec.spec.paths[$page.params.pathName][$page.params.method].operationId = '')}
> >
Add OperationId Add Operation ID
</button> </button>
{/if} {/if}
</label> </label>