File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ interface DisplayCompareMapLayerItem {
1212 layerIds : string [ ] ;
1313}
1414
15- interface DisplaycompareMapLayer {
15+ interface DisplayCompareMapLayer {
1616 mapLayerA : DisplayCompareMapLayerItem [ ] ;
1717 mapLayerB : DisplayCompareMapLayerItem [ ] ;
1818}
@@ -31,7 +31,7 @@ export const useMapCompareStore = defineStore('mapCompare', () => {
3131 const layerStore = useLayerStore ( ) ;
3232 const isComparing = ref < boolean > ( false ) ;
3333 const orientation = ref < 'horizontal' | 'vertical' > ( 'vertical' ) ;
34- const displayLayers = ref < DisplaycompareMapLayer > ( {
34+ const displayLayers = ref < DisplayCompareMapLayer > ( {
3535 mapLayerA : [ ] ,
3636 mapLayerB : [ ] ,
3737 } ) ;
@@ -67,7 +67,7 @@ export const useMapCompareStore = defineStore('mapCompare', () => {
6767 }
6868
6969 const generateDisplayLayers = ( ) => {
70- const localDisplayLayers : DisplaycompareMapLayer = {
70+ const localDisplayLayers : DisplayCompareMapLayer = {
7171 mapLayerA : [ ] ,
7272 mapLayerB : [ ] ,
7373 } ;
You can’t perform that action at this time.
0 commit comments