fix: 첫 건국 시 국가방침이 null임
This commit is contained in:
@@ -24,7 +24,7 @@
|
|||||||
<div class="s-border-t py-2 nationNotice">
|
<div class="s-border-t py-2 nationNotice">
|
||||||
<div class="px-2">【 국가방침 】</div>
|
<div class="px-2">【 국가방침 】</div>
|
||||||
<!-- eslint-disable-next-line vue/no-v-html -->
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
||||||
<div v-if="nationInfo" class="nationNoticeBody" v-html="nationInfo.notice.msg" />
|
<div v-if="nationInfo" class="nationNoticeBody" v-html="nationInfo.notice?.msg ?? ''" />
|
||||||
</div>
|
</div>
|
||||||
<div id="ingameBoard">
|
<div id="ingameBoard">
|
||||||
<!-- TODO: 운영자 툴바는 어디에?-->
|
<!-- TODO: 운영자 툴바는 어디에?-->
|
||||||
|
|||||||
@@ -178,7 +178,7 @@ export type GetFrontInfoResponse = {
|
|||||||
bill: number;
|
bill: number;
|
||||||
taxRate: number;
|
taxRate: number;
|
||||||
onlineGen: string;
|
onlineGen: string;
|
||||||
notice: NationNotice;
|
notice: NationNotice | null;
|
||||||
topChiefs: Record<
|
topChiefs: Record<
|
||||||
11 | 12,
|
11 | 12,
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user