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 issue with latest_update in input view #1408

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Modules/input/Views/input_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -929,6 +929,7 @@ function draw_devices() {
var input = devices[nodeid].inputs[z];

var processlistHtml = processlist_ui ? processlist_ui.drawpreview(input.processList, input) : '';

input.processlistHtml = processlistHtml;

var fv = list_format_updated_obj(input.time);
Expand All @@ -941,8 +942,7 @@ function draw_devices() {
if (input.name.length>max_name_length) max_name_length = input.name.length;
if (input.description.length>max_description_length) max_description_length = input.description.length;
if (String(fv.value).length>max_time_length) max_time_length = String(fv.value).length;
if (String(value_str).length>max_value_length) max_value_length = String(value_str).length;

if (String(value_str).length>max_value_length) max_value_length = String(value_str).length;
}
}
app.col.A = ((max_name_length * 8) + 30);
Expand Down