mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2024-12-22 09:00:14 +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!
|
# Runs it!
|
||||||
__version__ = "0.3.7"
|
__version__ = "0.3.9"
|
||||||
|
|
||||||
import secrets
|
import secrets
|
||||||
import configparser
|
import configparser
|
||||||
|
@ -651,11 +651,11 @@ document.getElementById('openDefaultsWizard').onclick = function() {
|
|||||||
for (user of users) {
|
for (user of users) {
|
||||||
let radio = document.createElement('div');
|
let radio = document.createElement('div');
|
||||||
radio.classList.add('radio');
|
radio.classList.add('radio');
|
||||||
|
let checked = 'checked';
|
||||||
if (first) {
|
if (first) {
|
||||||
const checked = 'checked';
|
|
||||||
first = false;
|
first = false;
|
||||||
} else {
|
} else {
|
||||||
const checked = '';
|
checked = '';
|
||||||
};
|
};
|
||||||
radio.innerHTML =
|
radio.innerHTML =
|
||||||
`<label><input type="radio" name="defaultRadios" id="default_${user['name']}" style="margin-right: 1rem;" ${checked}>${user['name']}</label>`;
|
`<label><input type="radio" name="defaultRadios" id="default_${user['name']}" style="margin-right: 1rem;" ${checked}>${user['name']}</label>`;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "jellyfin-accounts"
|
name = "jellyfin-accounts"
|
||||||
version = "0.3.7"
|
version = "0.3.9"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "A simple account management system for Jellyfin"
|
description = "A simple account management system for Jellyfin"
|
||||||
authors = ["Harvey Tindall <harveyltindall@gmail.com>"]
|
authors = ["Harvey Tindall <harveyltindall@gmail.com>"]
|
||||||
|
Loading…
Reference in New Issue
Block a user