mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 04:03:09 +02:00
parent
9d1a874ddc
commit
6607b39235
2 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ You should also include the user name that made the change.
|
||||||
- enhance(client): フォロー申請のボタンのデザインを改善
|
- enhance(client): フォロー申請のボタンのデザインを改善
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
-
|
- ロールで広告を無効にするとadmin/adsでプレビューがでてこない問題を修正
|
||||||
|
|
||||||
## 13.9.2 (2023/03/06)
|
## 13.9.2 (2023/03/06)
|
||||||
|
|
||||||
|
|
|
@ -82,7 +82,7 @@ const choseAd = (): Ad | null => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const chosen = ref(choseAd());
|
const chosen = ref(choseAd());
|
||||||
const shouldHide = $ref($i && $i.policies.canHideAds);
|
const shouldHide = $ref($i && $i.policies.canHideAds && (props.specify == null));
|
||||||
|
|
||||||
function reduceFrequency(): void {
|
function reduceFrequency(): void {
|
||||||
if (chosen.value == null) return;
|
if (chosen.value == null) return;
|
||||||
|
|
Loading…
Reference in a new issue