Skip to content
Snippets Groups Projects
Commit 6607b392 authored by syuilo's avatar syuilo
Browse files

fix(client): ロールで広告を無効にするとadmin/adsでプレビューがでてこない

Fix #10272
parent 9d1a874d
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ You should also include the user name that made the change.
- enhance(client): フォロー申請のボタンのデザインを改善
### Bugfixes
-
- ロールで広告を無効にするとadmin/adsでプレビューがでてこない問題を修正
## 13.9.2 (2023/03/06)
......
......@@ -82,7 +82,7 @@ const choseAd = (): Ad | null => {
};
const chosen = ref(choseAd());
const shouldHide = $ref($i && $i.policies.canHideAds);
const shouldHide = $ref($i && $i.policies.canHideAds && (props.specify == null));
function reduceFrequency(): void {
if (chosen.value == null) return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment