Add permissions / roles settings.

This commit is contained in:
Paul
2021-07-01 17:36:34 +01:00
parent 6082b2191b
commit d34efc1e69
13 changed files with 239 additions and 40 deletions

View File

@@ -69,7 +69,7 @@ export function Feedback() {
</Radio> }
<Radio
disabled={state === "sending"}
checked={checked === "__other_option__"}
checked={checked === "__other_option__" && other !== "Revite"}
onSelect={() => setChecked("__other_option__")}>
<Localizer>
<InputBox
@@ -96,9 +96,11 @@ export function Feedback() {
disabled={state === "sending"}
onChange={ev => setDescription(ev.currentTarget.value)}
/>
<Button type="submit" contrast>
<Text id="app.settings.pages.feedback.send" />
</Button>
<p>
<Button type="submit" contrast>
<Text id="app.settings.pages.feedback.send" />
</Button>
</p>
</form>
);
}