Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit fede6a3

Browse files
committed
Fix nits.
1 parent 3bd3f65 commit fede6a3

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
lines changed

modules/tracker/database/mysql/1.2.1.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.
22

3-
-- MySQL database for the tracker module, version 1.2.0
3+
-- MySQL database for the tracker module, version 1.2.1
44

55
CREATE TABLE IF NOT EXISTS `tracker_producer` (
66
`producer_id` bigint(20) NOT NULL AUTO_INCREMENT,

modules/tracker/database/pgsql/1.2.1.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.
22

3-
-- PostgreSQL database for the tracker module, version 1.2.0
3+
-- PostgreSQL database for the tracker module, version 1.2.1
44

55
SET client_encoding = 'UTF8';
66
SET default_with_oids = FALSE;

modules/tracker/database/sqlite/1.2.1.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- Midas Server. Copyright Kitware SAS. Licensed under the Apache License 2.0.
22

3-
-- SQLite database for the tracker module, version 1.2.0
3+
-- SQLite database for the tracker module, version 1.2.1
44

55
CREATE TABLE IF NOT EXISTS "tracker_producer" (
66
"producer_id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,

modules/tracker/public/js/producer/producer.view.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,8 @@ $(document).ready(function () {
6060
$('a.visualizeSelected').unbind('click').hide();
6161
}
6262

63-
/**
64-
* Toggle key metric state
65-
*/
63+
64+
// Toggle key metric state.
6665
if (checked.length >= 1) {
6766
$('span.keyMetricTogglePlural').html(checked.length > 1 ? 's' : '');
6867
var isKey = $(checked[0]).attr('iskey') === '1';
@@ -93,9 +92,7 @@ $(document).ready(function () {
9392
}
9493
});
9594

96-
/**
97-
* Set tooltip for key metric icon
98-
*/
95+
// Set tooltip for key metric icon.
9996
$('.keyMetric').qtip({
10097
'content': 'This is a key metric'
10198
});

modules/tracker/public/scss/producer/producer.view.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ input.selectTrend {
6060

6161
.keyMetric {
6262
float: right;
63-
}
63+
}

0 commit comments

Comments
 (0)