Skip to content

Commit

Permalink
r0b08x [chore] 3/30/2024, 7:38:56 AM
Browse files Browse the repository at this point in the history
  • Loading branch information
p3x-robot committed Mar 30, 2024
1 parent 6cc38a8 commit defe583
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ https://corifeus.com/redis-ui


---
# 💿 The p3x-redis-ui-material web interface that connects to the p3x-redis-ui-server via http and socket.io v2024.4.186
# 💿 The p3x-redis-ui-material web interface that connects to the p3x-redis-ui-server via http and socket.io v2024.4.187



Expand Down Expand Up @@ -77,7 +77,7 @@ All my domains ([patrikx3.com](https://patrikx3.com) and [corifeus.com](https://

---

[**P3X-REDIS-UI-MATERIAL**](https://corifeus.com/redis-ui-material) Build v2024.4.186
[**P3X-REDIS-UI-MATERIAL**](https://corifeus.com/redis-ui-material) Build v2024.4.187

[![NPM](https://img.shields.io/npm/v/p3x-redis-ui-material.svg)](https://www.npmjs.com/package/p3x-redis-ui-material) [![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "p3x-redis-ui-material",
"version": "2024.4.186",
"version": "2024.4.187",
"description": "💿 The p3x-redis-ui-material web interface that connects to the p3x-redis-ui-server via http and socket.io",
"corifeus": {
"icon": "fas fa-database",
Expand Down
22 changes: 16 additions & 6 deletions src/angular/dialog/p3xr-dialog-connection.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,13 @@ <h2 flex md-truncate>{{ $root.p3xr.state.cfg.readonlyConnections ?
</div>
</md-input-container>

<md-input-container class="md-block p3xr-md-input-container-no-bottom">
<md-input-container md-no-float class="md-block p3xr-md-input-container-no-bottom">
<label>{{ $root.p3xr.strings.label.ssh.sshPassword }}</label>
<input name="sshPassword" type="password" ng-model="model.sshPassword"
<input name="sshPassword" type="{{ !sshPasswordType ? 'password' : 'text'}}" ng-model="model.sshPassword"
ng-disabled="$root.p3xr.state.cfg.readonlyConnections" autocomplete="off">
<md-icon ng-click="sshPasswordType = !sshPasswordType ">
{{!sshPasswordType ? 'visibility' : 'visibility_off'}}
</md-icon>
</md-input-container>
<div class="p3xr-md-input-container-bottom-info">
{{ $root.p3xr.strings.label.passwordSecure }}
Expand Down Expand Up @@ -122,10 +125,13 @@ <h2 flex md-truncate>{{ $root.p3xr.state.cfg.readonlyConnections ?
ng-disabled="$root.p3xr.state.cfg.readonlyConnections" autocomplete="off">
</md-input-container>

<md-input-container class="md-block p3xr-md-input-container-no-bottom">
<md-input-container md-no-float class="md-block p3xr-md-input-container-no-bottom">
<label>{{ $root.p3xr.strings.form.connection.label.password }}</label>
<input name="password" type="password" ng-model="model.password"
<input name="password" type="{{ !passwordType ? 'password' : 'text'}}" ng-model="model.password"
ng-disabled="$root.p3xr.state.cfg.readonlyConnections" autocomplete="off">
<md-icon ng-click="passwordType = !passwordType ">
{{!passwordType ? 'visibility' : 'visibility_off'}}
</md-icon>
</md-input-container>
<div class="p3xr-md-input-container-bottom-info">
{{ $root.p3xr.strings.label.passwordSecure }}
Expand Down Expand Up @@ -197,6 +203,7 @@ <h2 flex md-truncate>{{ $root.p3xr.state.cfg.readonlyConnections ?
<md-icon>add</md-icon>
</md-button>
</div>
<br/>
<md-input-container class="md-block">
<label>{{ $root.p3xr.strings.form.connection.label.host }}</label>
<input name="host{{$index}}" ng-model="node.host"
Expand Down Expand Up @@ -224,10 +231,13 @@ <h2 flex md-truncate>{{ $root.p3xr.state.cfg.readonlyConnections ?
</md-input-container>


<md-input-container class="md-block p3xr-md-input-container-no-bottom">
<md-input-container md-no-float class="md-block p3xr-md-input-container-no-bottom">
<label>{{ $root.p3xr.strings.form.connection.label.password }}</label>
<input name="password{{$index}}" type="password" ng-model="node.password"
<input name="password{{$index}}" type="{{ !$scope['password' + $index] ? 'password' : 'text'}}" ng-model="node.password"
ng-disabled="$root.p3xr.state.cfg.readonlyConnections">
<md-icon ng-click="$scope['password' + $index] = !$scope['password' + $index] ">
{{!$scope['password' + $index] ? 'visibility' : 'visibility_off'}}
</md-icon>
</md-input-container>

<div class="p3xr-md-input-container-bottom-info">
Expand Down

0 comments on commit defe583

Please sign in to comment.