Fix linker
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ def filter_table(name, type, arch, license):
|
|
19 |
if license:
|
20 |
tmp = tmp[tmp["License"].isin(license)]
|
21 |
|
22 |
-
|
23 |
return tmp
|
24 |
|
25 |
def submit_model(name):
|
|
|
19 |
if license:
|
20 |
tmp = tmp[tmp["License"].isin(license)]
|
21 |
|
22 |
+
tmp["Name"] = tmp["Name"].apply(lambda x: f'<a target="_blank" href="https://huggingface.co/{x}" style="color: var(--link-text-color); text-decoration: underline;text-decoration-style: dotted;">{x}</a>')
|
23 |
return tmp
|
24 |
|
25 |
def submit_model(name):
|