Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/add missing fallback text user overlay #11515

Merged
merged 2 commits into from
Oct 27, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
<div ng-controller="Umbraco.Overlays.UserController">
<div class="umb-control-group" ng-if="!showPasswordFields">

<h5><localize key="user_yourProfile"></localize></h5>

<!--<p class="muted">
<small>
<localize key="user_sessionExpires"></localize>: {{remainingAuthSeconds | timespan}}
</small>
</p>-->
<h5><localize key="user_yourProfile">Your profile</localize></h5>

<umb-button
alias="editUser"
Expand Down Expand Up @@ -74,14 +68,14 @@ <h5>
<localize key="defaultdialogs_unLinkYour">Un-link your</localize>&nbsp;{{login.caption}}&nbsp;<localize key="defaultdialogs_account">account</localize>
</button>
</div>

</div>

</div>


<div class="umb-control-group" ng-if="!showPasswordFields && history.length">
<h5><localize key="user_yourHistory"></localize></h5>
<h5><localize key="user_yourHistory">Your recent history</localize></h5>
<ul class="umb-tree">
<li ng-repeat="item in history | orderBy:'time':true">
<a ng-href="{{item.link}}" ng-click="gotoHistory(item.link)" prevent-default>
Expand Down