chore: channel visibility only in admin

This commit is contained in:
Tristan Yang
2023-03-28 11:28:37 +08:00
parent 4cf615efe5
commit 8b8526e749
+1 -1
View File
@@ -119,7 +119,7 @@ export default function Overview({ id = 0 }) {
id="name"
placeholder={t("topic_placeholder")} />
</div>
{!readOnly && <div className={inputClass}>
{!readOnly && loginUser.is_admin && <div className={inputClass}>
<Label htmlFor="desc">{t("visibility")}</Label>
<Radio
options={[t("public"), t("private")]}