fix: resolve ElementPlus checkbox deprecation warning and add favicon [AC-IDSMETA-13]
This commit is contained in:
parent
9739aa2016
commit
6b6b7fb5e7
|
|
@ -2,7 +2,7 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>AI Service Admin</title>
|
||||
</head>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<rect width="32" height="32" rx="6" fill="#409EFF"/>
|
||||
<text x="16" y="22" font-family="Arial, sans-serif" font-size="18" font-weight="bold" fill="white" text-anchor="middle">AI</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 255 B |
|
|
@ -161,7 +161,7 @@
|
|||
<el-checkbox
|
||||
v-for="opt in METADATA_SCOPE_OPTIONS"
|
||||
:key="opt.value"
|
||||
:label="opt.value"
|
||||
:value="opt.value"
|
||||
>
|
||||
{{ opt.label }}
|
||||
</el-checkbox>
|
||||
|
|
|
|||
Loading…
Reference in New Issue