Merge branch 'main' into case-converter/more-cases
This commit is contained in:
commit
a7019f8992
@ -7,7 +7,7 @@ export function useCopy({ source, text = 'Copied to the clipboard' }: { source?:
|
||||
|
||||
return {
|
||||
async copy(content?: string, { notificationMessage }: { notificationMessage?: string } = {}) {
|
||||
await copy();
|
||||
await copy(content);
|
||||
message.success(notificationMessage ?? text);
|
||||
},
|
||||
};
|
||||
|
||||
@ -103,7 +103,7 @@ const tools = computed<ToolCategory[]>(() => [
|
||||
Home
|
||||
</n-tooltip>
|
||||
|
||||
<c-button to="/c-lib" circle variant="text" aria-label="UI Lib">
|
||||
<c-button v-if="config.app.env === 'development'" to="/c-lib" circle variant="text" aria-label="UI Lib">
|
||||
<icon-mdi:brush-variant text-20px />
|
||||
</c-button>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user