mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2024-12-22 00:50:12 +00:00
Fix new user defaults and bump to 0.3.9 bcs im dumb
Pushed 0.3.8 to PyPI and Docker hub thinking i'd already fixed a problem with new user defaults. I hadn't.
This commit is contained in:
parent
2e20466925
commit
f2966ef810
@ -1,5 +1,5 @@
|
||||
# Runs it!
|
||||
__version__ = "0.3.7"
|
||||
__version__ = "0.3.9"
|
||||
|
||||
import secrets
|
||||
import configparser
|
||||
|
@ -651,11 +651,11 @@ document.getElementById('openDefaultsWizard').onclick = function() {
|
||||
for (user of users) {
|
||||
let radio = document.createElement('div');
|
||||
radio.classList.add('radio');
|
||||
let checked = 'checked';
|
||||
if (first) {
|
||||
const checked = 'checked';
|
||||
first = false;
|
||||
} else {
|
||||
const checked = '';
|
||||
checked = '';
|
||||
};
|
||||
radio.innerHTML =
|
||||
`<label><input type="radio" name="defaultRadios" id="default_${user['name']}" style="margin-right: 1rem;" ${checked}>${user['name']}</label>`;
|
||||
|
@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "jellyfin-accounts"
|
||||
version = "0.3.7"
|
||||
version = "0.3.9"
|
||||
readme = "README.md"
|
||||
description = "A simple account management system for Jellyfin"
|
||||
authors = ["Harvey Tindall <harveyltindall@gmail.com>"]
|
||||
|
Loading…
Reference in New Issue
Block a user