Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

corrected value column width. #1491

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Modules/input/Views/input_view.js
Expand Up @@ -957,8 +957,8 @@ function draw_devices() {
}
app.col.A = ((max_name_length * 8) + 30);
app.col.G = ((max_description_length * 8) + 70); // additional padding to accomodate description length
app.col.D = ((max_time_length * 8) + 17);
app.col.E = ((max_value_length * 8) + 20) + 20; // additional padding to accomodate the 'weeks/days/hours/minutes/s' suffix
app.col.D = ((max_value_length * 8) + 17);
app.col.E = ((max_time_length * 8) + 20) + 20; // additional padding to accomodate the 'weeks/days/hours/minutes/s' suffix
app.col.H = 200

resize_view();
Expand Down