Skip to content

Commit

Permalink
add huc and box images
Browse files Browse the repository at this point in the history
  • Loading branch information
devincowan committed Sep 26, 2024
1 parent 148ee23 commit 439315f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Binary file added app/frontend/src/assets/box-drag.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/frontend/src/assets/huc-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions app/frontend/src/stores/domains.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
import { defineStore } from 'pinia'
import { ref } from 'vue'
import hucImg from '@/assets/huc-image.png'
import boxDrag from '@/assets/box-drag.png'

export const useDomainsStore = defineStore('domains', () => {
const domains = ref([
{
id: 1,
name: 'Select using HUC12',
img: 'https://picsum.photos/400',
img: hucImg,
enabled: true,
info: 'Select a HUC12 boundary from the map that you want to use for subsetting.'
},
{
id: 2,
name: 'Draw a box',
img: 'https://picsum.photos/300',
img: boxDrag,
enabled: false,
info: 'Draw a box on the map to define the domain.'
}
Expand Down

0 comments on commit 439315f

Please sign in to comment.