From 5d1af4f8b72c7923fb5d349e3d434f1ca191ad3d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 1 Apr 2015 13:27:38 -0400 Subject: [PATCH] Fix icon class --- mayan/apps/common/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/common/widgets.py b/mayan/apps/common/widgets.py index 17c8839b6b..6d3ca56743 100644 --- a/mayan/apps/common/widgets.py +++ b/mayan/apps/common/widgets.py @@ -68,7 +68,7 @@ def exists_widget(path): return exception -def two_state_template(state, ok_icon='fa fa-check', fail_icon='fa fa-cross'): +def two_state_template(state, ok_icon='fa fa-check', fail_icon='fa fa-times'): if state: return mark_safe(''.format(ok_icon)) else: