Li Jun
2022-05-10 896e69e68ecc01b0b8a4c03dd010e0a31603be6e
force-app/main/default/classes/FieldInfo.cls
@@ -12,7 +12,7 @@
    public Option GetFirstItemByLabel(string label){
        if(Options == null)return null;
        for(Option lv : Options){
            if(lv!=null&&lv.value == label)return lv;
            if(lv!=null&&lv.label == label)return lv;
        }
        return null;
    }