Skip to content

Commit

Permalink
fix: tiers loading (#1293) (#2626)
Browse files Browse the repository at this point in the history
* fix(proposals): proposals links inside profile page (#1311)

* fix(create-proposal): tiers query (#1293)
  • Loading branch information
evgenibir authored May 21, 2024
1 parent d499cd3 commit d485a85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/proposals/create/OptionsArchetypes.vue
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ const ASSIGMENT_OPTIONS = `
id: docId
name: details_title_s
}
salaryband(filter: {system_defaultAsset_i: {eq: 1}}) {
salaryband {
id: docId
name: details_name_s
annualAmount: details_annualUsdSalary_a
@@ -37,7 +37,7 @@ export default {
label: archetype?.name,
value: { ...archetype }
}))
console.log(data.getDao)

Check failure on line 40 in src/pages/proposals/create/OptionsArchetypes.vue

GitHub Actions / build-staging

Unexpected console statement

Check failure on line 40 in src/pages/proposals/create/OptionsArchetypes.vue

GitHub Actions / build-eos-mainnet-staging

Unexpected console statement
this.tiers = data?.getDao?.salaryband?.map(level => ({
label: level?.name,
value: { ...level }

0 comments on commit d485a85

Please sign in to comment.