Skip to content

Commit

Permalink
feat(demo): Remove exploration_level and timeout from frontend
Browse files Browse the repository at this point in the history
Signed-off-by: Ashish Kumar <[email protected]>
  • Loading branch information
krashish8 committed Jan 27, 2022
1 parent 444658f commit 94d22ed
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
9 changes: 0 additions & 9 deletions demo/js/views/ProjectListView.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export default class ProjectListView extends AbstractView {
<small class="text-muted">Created: ${project.created_at}</small>
</div>
<small>
Exploration Level: ..., Timeout: ...
<p style="float: right">
<a style="margin-right:5px;" type="button" class="btn btn-outline-info" href="/projects/${project.id}" data-link>
<i class="fas fa-folder-open"></i>
Expand Down Expand Up @@ -149,14 +148,6 @@ export default class ProjectListView extends AbstractView {
<input type="hidden" id="id" name="id" value="${project.id}">
<input type="text" class="form-control" id="name" name="name" value="${project.name}">
</div>
<div class="form-group">
<label for="explorationLevel">Exploration Level</label>
<input type="text" class="form-control" id="explorationLevel" name="explorationLevel" value="${project.exploration_level}">
</div>
<div class="form-group">
<label for="timeout">Timeout</label>
<input type="text" class="form-control" id="timeout" name="timeout" value="${project.timeout}">
</div>
<button type="button" class="btn btn-outline-success project__save">Save</button>
<button type="button" class="btn btn-outline-success project__reset">Reset</button>
</form>
Expand Down
1 change: 0 additions & 1 deletion demo/js/views/ProjectView.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ export default class ProjectView extends AbstractView {
<h5 class="mb-1">${project.name}</h5>
<small class="text-muted">Created: ${project.created_at}</small>
</div>
<small>Exploration Level: ..., Timeout: ...</small>
</div>
</div>
<div id="map"></div>
Expand Down

0 comments on commit 94d22ed

Please sign in to comment.