fix,wip: 수정된 지도 모듈 주소에 따라 연감 변경

This commit is contained in:
2022-04-20 20:59:10 +09:00
parent c713fefc62
commit fd08ada367
+3 -3
View File
@@ -12,12 +12,12 @@
<div v-if="history" class="mx-0">
<div class="row g-0">
<div class="map_position">
<StaticMapTemplate
<MapViewer
:server-nick="serverNick"
:serverID="queryServerID"
:map-name="unwrap(gameConstStore?.gameConst.mapName)"
:model-value="history.map"
:is-detail-map="true"
:is-detail-map="false"
:city-position="cityPosition"
:format-city-info="formatCityInfoText"
:image-path="imagePath"
@@ -78,7 +78,7 @@ import { joinYearMonth } from "./util/joinYearMonth";
import { parseYearMonth } from "./util/parseYearMonth";
import { formatLog } from "./utilGame/formatLog";
import SimpleNationList from "./components/SimpleNationList.vue";
import StaticMapTemplate, { type CityPositionMap, type MapCityParsedRaw, type MapCityParsed} from "./components/StaticMapTemplate.vue";
import MapViewer, { type CityPositionMap, type MapCityParsedRaw, type MapCityParsed} from "./components/MapViewer.vue";
import { getGameConstStore, type GameConstStore } from "./GameConstStore";
import { unwrap } from "@/util/unwrap";