mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-19 07:48:37 +02:00
fix sleeve memory bug
This commit is contained in:
@@ -1,9 +1,6 @@
|
||||
import { createElement } from "./createElement";
|
||||
|
||||
export function createOptionElement(
|
||||
text: string,
|
||||
value = "",
|
||||
): HTMLOptionElement {
|
||||
export function createOptionElement(text: string, value = ""): HTMLOptionElement {
|
||||
let sanitizedValue: string = value;
|
||||
if (sanitizedValue === "") {
|
||||
sanitizedValue = text;
|
||||
|
||||
Reference in New Issue
Block a user