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)})"
|
||||
if change == "Removed":
|
||||
install = "-"
|
||||
std = "-"
|
||||
ds = "-"
|
||||
else:
|
||||
install = f"[Add to Obtainium!][{ref_key}]"
|
||||
std = "✅" if should_include_app(app, "standard") else "-"
|
||||
ds = "✅" if should_include_app(app, "dual-screen") else "-"
|
||||
std = "✅" if should_include_app(app, "standard") else "-"
|
||||
ds = "✅" if should_include_app(app, "dual-screen") else "-"
|
||||
return f"| {app_link} | {install} | {change} | {std} | {ds} |"
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user