mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
Update settings page w/ deleting your account. and update translations.
This commit is contained in:
parent
3ebaff5218
commit
45397675f5
6 changed files with 147 additions and 33 deletions
|
@ -189,8 +189,8 @@ const openNews = (url: string, titleName: string) => {
|
|||
emit("openArticles", url, titleName);
|
||||
};
|
||||
|
||||
const openPublisher = (text: string) => {
|
||||
emit("openNewsSourcePage", text);
|
||||
const openPublisher = (slug: string, title: string) => {
|
||||
emit("openNewsSourcePage", slug, title);
|
||||
};
|
||||
</script>
|
||||
<template>
|
||||
|
@ -243,7 +243,9 @@ const openPublisher = (text: string) => {
|
|||
<TooltipProvider>
|
||||
<Tooltip>
|
||||
<TooltipTrigger>
|
||||
<button @click="openPublisher(item.publisherId)">
|
||||
<button
|
||||
@click="openPublisher(item.publisherId, item.publisher)"
|
||||
>
|
||||
{{ item.publisher }}
|
||||
</button>
|
||||
</TooltipTrigger>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue