Sfoglia il codice sorgente

Merge branch 'hotfix'

version-14
Nabin Hait 8 anni fa
parent
commit
dc4b554f94
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +1
    -1
      frappe/__init__.py
  2. +1
    -1
      frappe/public/js/frappe/model/indicator.js

+ 1
- 1
frappe/__init__.py Vedi File

@@ -13,7 +13,7 @@ import os, sys, importlib, inspect, json
from .exceptions import *
from .utils.jinja import get_jenv, get_template, render_template

__version__ = "7.0.43"
__version__ = "7.0.44"

local = Local()



+ 1
- 1
frappe/public/js/frappe/model/indicator.js Vedi File

@@ -30,7 +30,7 @@ frappe.get_indicator = function(doc, doctype) {
if(value) {
var colour = "";
if(in_list(locals["Workflow State"], value) && locals["Workflow State"][value].style) {
if(locals["Workflow State"][value] && locals["Workflow State"][value].style) {
var colour = {
"Success": "green",
"Warning": "orange",


Caricamento…
Annulla
Salva