From 899e070f8ebeef037500583666ee9610f335b12a Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Thu, 22 May 2014 08:34:42 -0400 Subject: [PATCH] Fix message un-selection on the list (#1489906) --- program/js/list.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/js/list.js b/program/js/list.js index 560ee0d..04aec1c 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -313,7 +313,7 @@ if (row.id) domrow.id = row.id; if (row.className) domrow.className = row.className; if (row.style) $.extend(domrow.style, row.style); - if (row.uid) $(domrow).data('uid', row.uid); + if (row.uid) $(domrow).data('uid', String(row.uid)); // #1489906 for (var e, domcell, col, i=0; row.cols && i < row.cols.length; i++) { col = row.cols[i]; -- Gitblit v1.9.1