浏览代码

Merge branch 'hotfix'

version-14
Saurabh 7 年前
父节点
当前提交
bc40ed5a87
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      frappe/__init__.py
  2. +1
    -1
      frappe/public/js/legacy/client_script_helpers.js

+ 1
- 1
frappe/__init__.py 查看文件

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

__version__ = '10.0.21'
__version__ = '10.0.22'
__title__ = "Frappe Framework"

local = Local()


+ 1
- 1
frappe/public/js/legacy/client_script_helpers.js 查看文件

@@ -437,7 +437,7 @@ _f.Frm.prototype.set_indicator_formatter = function(fieldname, get_color, get_te
function(value, df, options, doc) {
if(value) {
return repl('<a class="indicator %(color)s" href="#Form/%(doctype)s/%(name)s">%(label)s</a>', {
color: get_color(doc),
color: get_color(doc || {}),
doctype: df.options,
name: value,
label: get_text ? get_text(doc) : value


正在加载...
取消
保存