Fix for fluoride.js

This commit is contained in:
localhost_frssoft 2022-12-02 16:47:28 +03:00
parent 8c41878b6d
commit f729e29a8d
2 changed files with 4 additions and 11 deletions

View file

@ -237,11 +237,11 @@
{{if or (eq .Visibility "private") (eq .Visibility "direct")}}
Locked
{{else}}
<input type="radio" id="retweet_visibility" name="retweet_visibility" value="public" checked>
<input type="radio" id="retweet_visibility-{{.ID}}" name="retweet_visibility" value="public" checked>
<label for="retweet_visibility">public</label>
<input type="radio" id="retweet_visibility" name="retweet_visibility" value="unlisted">
<input type="radio" id="retweet_visibility-{{.ID}}" name="retweet_visibility" value="unlisted">
<label for="retweet_visibility">unlisted</label>
<input type="radio" id="retweet_visibility" name="retweet_visibility" value="private">
<input type="radio" id="retweet_visibility-{{.ID}}" name="retweet_visibility" value="private">
<label for="retweet_visibility">private</label>
{{end}}
</div>