Skip to content

Commit

Permalink
r0b08x [chore] 3/30/2024, 8:30:20 AM
Browse files Browse the repository at this point in the history
  • Loading branch information
p3x-robot committed Mar 30, 2024
1 parent b9c3f69 commit ef0131a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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.190
# 💿 The p3x-redis-ui-material web interface that connects to the p3x-redis-ui-server via http and socket.io v2024.4.192



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.190
[**P3X-REDIS-UI-MATERIAL**](https://corifeus.com/redis-ui-material) Build v2024.4.192

[![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.190",
"version": "2024.4.192",
"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
4 changes: 2 additions & 2 deletions src/angular/dialog/p3xr-dialog-connection.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ <h2 flex md-truncate>{{ $root.p3xr.state.cfg.readonlyConnections ?
<label>{{ $root.p3xr.strings.label.ssh.sshPassword }}</label>
<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 ">
<md-icon ng-click="sshPasswordType = !sshPasswordType " ng-if="!$root.p3xr.state.cfg.readonlyConnections">
{{!sshPasswordType ? 'visibility' : 'visibility_off'}}
</md-icon>
</md-input-container>
Expand Down Expand Up @@ -128,7 +128,7 @@ <h2 flex md-truncate>{{ $root.p3xr.state.cfg.readonlyConnections ?
<label>{{ $root.p3xr.strings.form.connection.label.password }}</label>
<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 ">
<md-icon ng-click="passwordType = !passwordType " ng-if="!$root.p3xr.state.cfg.readonlyConnections">
{{!passwordType ? 'visibility' : 'visibility_off'}}
</md-icon>
</md-input-container>
Expand Down
2 changes: 1 addition & 1 deletion src/angular/dialog/p3xr-dialog-connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ p3xr.ng.factory('p3xrDialogConnection', function (p3xrCommon, $mdDialog, p3xrSoc

if (options.model !== undefined) {
$scope.model = p3xr.clone(options.model)
$scope.model.askAuth = options.model.askAuth
//$scope.model.askAuth = options.model.askAuth
$scope.model.password = options.model.id
$scope.model.tlsCrt = options.model.id
$scope.model.tlsKey = options.model.id
Expand Down

0 comments on commit ef0131a

Please sign in to comment.