devingulliver commited on
Commit
022df83
1 Parent(s): eee8ddd

Fix linker

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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
- df["Name"] = df["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):
 
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):