mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
add view/subscribe title tags
This commit is contained in:
parent
3ef841a79a
commit
ceb9edad8c
1 changed files with 2 additions and 2 deletions
|
|
@ -44,14 +44,14 @@ export class Home extends React.Component<RouteComponentProps<{}>, IFilterListsS
|
|||
{
|
||||
Header: "View",
|
||||
accessor: "viewUrl",
|
||||
Cell: (d: any) => <a href={d.value}>View</a>,
|
||||
Cell: (d: any) => <a href={d.value} title={"View the raw list (typically) in .txt format. Many of these are quite large, so be cautious if on metered bandwidth."}>View</a>,
|
||||
style: { textAlign: "center" }
|
||||
},
|
||||
{
|
||||
Header: "Subscribe",
|
||||
accessor: "viewUrl",
|
||||
Cell: (d: any) => <a href={`abp:subscribe?location=${encodeURIComponent(d.value)
|
||||
}&title=${encodeURIComponent(d.row.name)}`}>Subscribe</a>,
|
||||
}&title=${encodeURIComponent(d.row.name)}`} title={"Subscribe to list with browser extension supporting \"abp:\" protool (e.g. uBlock Origin, AdBlock Plus)."}>Subscribe</a>,
|
||||
style: { textAlign: "center" }
|
||||
}
|
||||
]}
|
||||
|
|
|
|||
Loading…
Reference in a new issue