Skip to content

Commit

Permalink
UI minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pantsel committed Nov 1, 2016
1 parent b4960c7 commit cc14ce4
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ node_modules/
/frontend/npm-debug.log
/_README.md
/frontend/config/config.json
/backend/api/services/remote/credentials/google-spreadsheets/

This file was deleted.

1 change: 1 addition & 0 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"include-all": "0.1.6",
"jsonwebtoken": "5.4.1",
"lodash": "3.10.1",
"mkdirp": "^0.5.1",
"moment-timezone": "0.4.1",
"mongodb": "^2.2.11",
"mysql": "^2.11.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ <h4 class="modal-title" id="modal-title">
</div>
<div class="col-md-12 bg-light-grey padding">
<h5 class="no-margin capitalize">{{adapter.name}}</h5>
<p class="help-block">Define options to the consumer storage.</p>
<p data-ng-show="!adapter.info" class="help-block">Define options to the consumer storage.</p>
<p data-ng-show="adapter.info" class="help-block" data-ng-bind-html="adapter.info"></p>
</div>
<div class="modal-body">

<form name="connOptionsForm" ng-submit="loadConsumers()">
<div class="row">
<div class="col-md-12">
Expand All @@ -19,12 +21,14 @@ <h5>Adapter Options</h5>
data-ng-repeat="(key,field) in adapter.form_fields.connection">
<div ng-switch on="field.type">
<div ng-switch-when="file">
<label>{{field.name}}</label>
<input type="file"
ng-required="field.required"
ngf-select ng-model="connOptions[key]" name="field.name"
/>
</div>
<div ng-switch-when="boolean">
<label>{{field.name}}</label><br>
<input
bs-switch
ng-model="connOptions[key]"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ <h4 class="modal-title" id="modal-title">
</h4>
</div>
<div class="col-md-12 bg-light-grey padding">
<h5>Select medium</h5>
<p class="help-block no-margin">Select the medium from which to import the consumers</p>
<h5>Select storage</h5>
<p class="help-block no-margin">Select the storage from which to import the consumers</p>
</div>
<div class="row">
<div class="col-md-12">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/core/services/ListConfigService.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@
itemCount: 0,
items: [],
itemsPerPage: 25,
itemsPerPageOptions: [10, 25, 50, 100, 250,500],
itemsPerPageOptions: [10, 25, 50, 100, 200],
currentPage: 1,
where: {},
loading: true,
Expand Down

0 comments on commit cc14ce4

Please sign in to comment.