Skip to content

Commit

Permalink
token adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellacosse committed Aug 20, 2024
1 parent 54217ea commit b819ae5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/resources/original_messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@
},
"save": {
"description": "The text on a button to save application settings.",
"message": "save"
"message": "Save"
},
"server_access_key_detected": {
"description": "A message indicating the application has detected a valid access key to be used to connect to a server.",
Expand Down
2 changes: 1 addition & 1 deletion client/src/www/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"privacy-title": "Outline will never collect your personal information",
"quit": "Quit",
"reconnecting-server-state": "Reconnecting...",
"save": "save",
"save": "Save",
"server-access-key-detected": "Access key detected",
"server-access-key-label": "ss://access-key",
"server-add": "Add server",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
limitations under the License.
*/

import {LitElement, html} from 'lit';
import {LitElement, html, css} from 'lit';
import {customElement, property, state} from 'lit/decorators.js';
import '@material/web/all.js';

Expand All @@ -24,6 +24,13 @@ export class ServerRenameDialog extends LitElement {

@state() private editedServerName: string | null = null;

static styles = css`
:host {
--md-sys-color-primary: var(--outline-primary);
--md-sys-shape-corner-extra-large: 12px;
}
`;

render() {
if (this.editedServerName === null) {
this.editedServerName = this.serverName;
Expand Down

0 comments on commit b819ae5

Please sign in to comment.