We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93a637e commit a1c4dedCopy full SHA for a1c4ded
roundup/cgi/templating.py
@@ -2515,8 +2515,9 @@ def propchanged(self, *properties):
2515
if self.last_item is None:
2516
return 1
2517
for property in properties:
2518
- if property == 'id':
2519
- if (self.last_item['id'] != self.current_item['id']):
+ if property == 'id' or isinstance (self.last_item[property], list):
+ if (str(self.last_item[property]) !=
2520
+ str(self.current_item[property])):
2521
2522
else:
2523
if (self.last_item[property]._value !=
0 commit comments