mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-30 08:11:14 +00:00
fixes according to review
This commit is contained in:
parent
7e01b58ada
commit
4f9c34821f
2 changed files with 2 additions and 2 deletions
|
@ -814,7 +814,7 @@ export class Settings extends Component<any, SettingsState> {
|
||||||
/>
|
/>
|
||||||
<label
|
<label
|
||||||
className="form-check-label"
|
className="form-check-label"
|
||||||
htmlFor="user-show-new-post-notifs"
|
htmlFor="user-open-links-in-new-tab"
|
||||||
>
|
>
|
||||||
{I18NextService.i18n.t("open_links_in_new_tab")}
|
{I18NextService.i18n.t("open_links_in_new_tab")}
|
||||||
</label>
|
</label>
|
||||||
|
|
|
@ -761,7 +761,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
||||||
data-tippy-content={title}
|
data-tippy-content={title}
|
||||||
target={
|
target={
|
||||||
UserService.Instance.myUserInfo?.local_user_view.local_user
|
UserService.Instance.myUserInfo?.local_user_view.local_user
|
||||||
.open_links_in_new_tab ?? false
|
.open_links_in_new_tab
|
||||||
? "_blank"
|
? "_blank"
|
||||||
: "_self"
|
: "_self"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue