Compare commits
2 Commits
fdc22af4cf
...
dd3547678c
| Author | SHA1 | Date | |
|---|---|---|---|
|
dd3547678c
|
|||
|
0af5f58688
|
@@ -5,6 +5,6 @@ from .EdgeDB import EdgeDB
|
||||
class StorageLoader:
|
||||
@classmethod
|
||||
def build(self, selected_storage:str) -> LocalStorage|EdgeDB:
|
||||
storage_module = __import__(f"server.storage.{selected_storage}", fromlist=[selected_storage])
|
||||
storage_module = __import__(f"server.database.{selected_storage}", fromlist=[selected_storage])
|
||||
storage_class = getattr(storage_module, selected_storage)
|
||||
return storage_class
|
||||
|
||||
@@ -735,6 +735,7 @@
|
||||
<option value="650" selected>1x</option>
|
||||
<option value="400">1.5x</option>
|
||||
<option value="250">2x</option>
|
||||
<option value="160">2.5x</option>
|
||||
</select>
|
||||
</label>
|
||||
<input type="range" min="0" max="0" step="1" id="turn-slider" value="0">
|
||||
|
||||
Reference in New Issue
Block a user