1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2025-01-24 10:43:58 +09:00
This commit is contained in:
NoriDev 2024-09-19 10:43:56 +09:00
parent 67e2855385
commit 70b777ff2a
3 changed files with 8 additions and 8 deletions

View File

@ -235,12 +235,12 @@ describe('アンテナ', () => {
await failedApiCall({ await failedApiCall({
endpoint: 'antennas/create', endpoint: 'antennas/create',
parameters: { ...defaultParam, keywords: [[]], excludeKeywords: [[]] }, parameters: { ...defaultParam, keywords: [[]], excludeKeywords: [[]] },
user: alice user: alice,
}, { }, {
status: 400, status: 400,
code: 'EMPTY_KEYWORD', code: 'EMPTY_KEYWORD',
id: '53ee222e-1ddd-4f9a-92e5-9fb82ddb463a' id: '53ee222e-1ddd-4f9a-92e5-9fb82ddb463a',
}) });
}); });
//#endregion //#endregion
//#region 更新(antennas/update) //#region 更新(antennas/update)
@ -274,12 +274,12 @@ describe('アンテナ', () => {
await failedApiCall({ await failedApiCall({
endpoint: 'antennas/update', endpoint: 'antennas/update',
parameters: { ...defaultParam, antennaId: antenna.id, keywords: [[]], excludeKeywords: [[]] }, parameters: { ...defaultParam, antennaId: antenna.id, keywords: [[]], excludeKeywords: [[]] },
user: alice user: alice,
}, { }, {
status: 400, status: 400,
code: 'EMPTY_KEYWORD', code: 'EMPTY_KEYWORD',
id: '721aaff6-4e1b-4d88-8de6-877fae9f68c4' id: '721aaff6-4e1b-4d88-8de6-877fae9f68c4',
}) });
}); });
//#endregion //#endregion

View File

@ -20,5 +20,5 @@ import { i18n } from '@/i18n.js';
const serverMetadata = inject(DI.serverMetadata)!; const serverMetadata = inject(DI.serverMetadata)!;
const notFoundImageUrl = computed(() => serverMetadata?.notFoundImageUrl ?? DEFAULT_NOT_FOUND_IMAGE_URL); const notFoundImageUrl = computed(() => serverMetadata.notFoundImageUrl ?? DEFAULT_NOT_FOUND_IMAGE_URL);
</script> </script>

View File

@ -95,7 +95,7 @@ function stringifyUiProps(uiProps) {
return JSON.stringify( return JSON.stringify(
{ ...uiProps, type: undefined, id: undefined }, { ...uiProps, type: undefined, id: undefined },
(k, v) => typeof v === 'function' ? '<function>' : v, (k, v) => typeof v === 'function' ? '<function>' : v,
2 2,
); );
} }