fix typo in release removed rows
This commit is contained in:
@@ -208,10 +208,12 @@ def make_app_table_row(app: dict[str, Any], change: str) -> str:
|
|||||||
app_link = f"[{name}]({get_application_url(app)})"
|
app_link = f"[{name}]({get_application_url(app)})"
|
||||||
if change == "Removed":
|
if change == "Removed":
|
||||||
install = "-"
|
install = "-"
|
||||||
|
std = "-"
|
||||||
|
ds = "-"
|
||||||
else:
|
else:
|
||||||
install = f"[Add to Obtainium!][{ref_key}]"
|
install = f"[Add to Obtainium!][{ref_key}]"
|
||||||
std = "✅" if should_include_app(app, "standard") else "-"
|
std = "✅" if should_include_app(app, "standard") else "-"
|
||||||
ds = "✅" if should_include_app(app, "dual-screen") else "-"
|
ds = "✅" if should_include_app(app, "dual-screen") else "-"
|
||||||
return f"| {app_link} | {install} | {change} | {std} | {ds} |"
|
return f"| {app_link} | {install} | {change} | {std} | {ds} |"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user