Skip to content

Commit eb10df5

Browse files
committed
improvements..
1 parent 01f2edc commit eb10df5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Darryldecode/Backend/Components/User/Views/users.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179
<input data-ng-model="user.email" type="email" class="form-control" placeholder="Email">
180180
</div>
181181
<div class="form-group">
182-
<label>New Password</label>
182+
<label>New Password <small><i>(Leave blank if no password changes)</i></small></label>
183183
<input data-ng-model="user.password" type="password" class="form-control" placeholder="Password">
184184
</div>
185185
<div class="form-group">

src/Darryldecode/Backend/Public/backend/cb/app/users/controller.manage.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,9 +205,9 @@ angular.module('cb.user').controller('ManageUsersController', ['$scope','$window
205205
});
206206

207207
// Query Initial Data
208-
function queryInitialData()
209-
{
208+
function queryInitialData() {
210209
UsersFactory.get({perPage:$scope.pagination.perPage}).then(function (success) {
210+
$scope.pagination.current = 1;
211211
$scope.users = success.data.data;
212212
}, function (error) {
213213
GlobalLoaderService.show(error.data.message || 'An error has occurred.', 'danger').hide(4000);

0 commit comments

Comments
 (0)