Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(copy): replace configuration copy #1956

Merged
merged 1 commit into from
Jan 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/dao/settings-communication.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default {
<template lang="pug">
.settings-communicaiton
widget(title='Announcements' titleImage='/svg/paperplane.svg' :bar='true').q-pa-none.full-width.q-mt-md
p.q-mt-md.subtitle Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
p.q-mt-md.subtitle Post an announcement across all sections to let members know about an important update.

template(v-for="(announcement, index) in form.announcements")
.row.q-mt-sm
Expand Down Expand Up @@ -81,7 +81,7 @@ export default {
q-btn(:disable="form.announcements.length === 10 || !isAdmin" v-show="index === form.announcements.length - 1" flat color="primary" no-caps padding="none" @click="form.alerts.push({content:'', enabled:false, level:'default' })").text-bold.q-pa-none.q-ml-lg.q-mr-xs Add more +

widget(title='Alerts' titleImage='/svg/bell.svg' :bar='true' v-if="isHypha").q-pa-none.full-width.q-mt-md
p.q-mt-md.subtitle Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
p.q-mt-md.subtitle Only for Hypha - Post an alert across all DAOs to let users know about an important update.

template(v-for="(alert, index) in form.alerts")
.row.ju.q-mt-sm
Expand Down
2 changes: 1 addition & 1 deletion src/components/dao/settings-design.vue
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ ${backgroundImage
<template lang="pug">
.settings-design
widget(title='Design' titleImage='/svg/pen-brush.svg' :bar='true').q-pa-none.full-width.q-mt-md
p.q-mt-md.subtitle You can style your DAO here - changes can take a couple of minutes until they are live and you might have to empty your cache in order to see them displayed correctly.
p.q-mt-md.subtitle Use design settings to change important brand elements of your DAO, including the colors, logos, patterns, banners and backgrounds. Note: changes can take a couple of minutes until they are live and you might have to empty your cache in order to see them displayed correctly.

q-tabs(
active-color="primary"
Expand Down
8 changes: 4 additions & 4 deletions src/components/dao/settings-general.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default {

<template lang="pug">
widget(title='General' titleImage='/svg/file-checkmark.svg' :bar='true').q-pa-none.full-width
p.q-mt-md Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
p.q-mt-md Use general settings to set up some basic parameters such as a link to your main collaboration space and your DAO and use the toggle to enable or disable key features.

.row.justify-between
.col-6.q-pr-sm
Expand Down Expand Up @@ -94,7 +94,7 @@ widget(title='General' titleImage='/svg/file-checkmark.svg' :bar='true').q-pa-no
//- q-icon(name="fas fa-info-circle" size="16px" color="body")
//- q-tooltip(:content-style="{ 'font-size': '1em' }" anchor="top middle" self="bottom middle") Add a link to your DAO documentation here. Could be your website or a wiki where users can learn more about your DAO. The link will be added to the Banner on the Organization Page.
.row.items-center.justify-between.q-mt-xs
label.text-xs Deactivate the toggle to temporarily disable new proposal creation.
label.text-xs Activate or deactivate proposal creation.
q-toggle(:disable="!isAdmin" color="primary" keep-color v-model="form.proposalsCreationEnabled")
q-tooltip(:content-style="{ 'font-size': '1em' }" anchor="top middle" self="bottom middle" v-if="!isAdmin") Only DAO admins can change the settings

Expand All @@ -104,7 +104,7 @@ widget(title='General' titleImage='/svg/file-checkmark.svg' :bar='true').q-pa-no
//- q-icon(name="fas fa-info-circle" size="16px" color="body")
//- q-tooltip(:content-style="{ 'font-size': '1em' }" anchor="top middle" self="bottom middle") Add a link to your DAO documentation here. Could be your website or a wiki where users can learn more about your DAO. The link will be added to the Banner on the Organization Page.
.row.items-center.justify-between.q-mt-xs
label.text-xs Deactivate the toggle to temporarily disable new members application.
label.text-xs Activate or deactivate member applications.
q-toggle(:disable="!isAdmin" color="primary" keep-color v-model="form.membersApplicationEnabled")
q-tooltip(:content-style="{ 'font-size': '1em' }" anchor="top middle" self="bottom middle" v-if="!isAdmin") Only DAO admins can change the settings

Expand All @@ -115,7 +115,7 @@ widget(title='General' titleImage='/svg/file-checkmark.svg' :bar='true').q-pa-no
//- q-icon(name="fas fa-info-circle" size="16px" color="body")
//- q-tooltip(:content-style="{ 'font-size': '1em' }" anchor="top middle" self="bottom middle") Add a link to your DAO documentation here. Could be your website or a wiki where users can learn more about your DAO. The link will be added to the Banner on the Organization Page.
.row.items-center.justify-between.q-mt-xs
label.text-xs Deactivate the toggle to temporarily disable new proposal creation.
label.text-xs Activate or deactivate removable banners.
q-toggle(:disable="!isAdmin" color="primary" keep-color v-model="form.removableBannersEnabled")
q-tooltip(:content-style="{ 'font-size': '1em' }" anchor="top middle" self="bottom middle" v-if="!isAdmin") Only DAO admins can change the settings

Expand Down
2 changes: 1 addition & 1 deletion src/components/dao/settings-voting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default {

<template lang="pug">
widget(title='Voting' titleImage='/svg/vote.svg' :bar='true').q-pa-none.full-width
p.q-mt-md Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
p.q-mt-md Use voting settings to set up your voting parameters including unity (min % of members endorsing it), quorum (min % of total members participating in the vote) and voting duration (how long a vote is open, including updates to your vote).

.row.q-mt-xl
.col-6.q-pr-sm
Expand Down