Jaryway

Results 14 comments of Jaryway

it seems that adding @import "~antd/es/style/themes/default.less" in variables.less file will cause this problem. when i comments i, every thing is fine. variables.less ``` // @import "~antd/es/style/themes/default.less"; ... ``` ![image](https://user-images.githubusercontent.com/5987056/100419036-aaa82d80-30be-11eb-9869-1e1e7c9f2813.png) it...

我也想实现这个功能! @guozhaolong 你平时开发是怎么调试的?每次写完都 build 一次,然后重启 example ? 为什么不直接在example 中引 src 的代码,这样不是更方便调试吗?

昨天捣鼓了一下,可以修改 example 的 config.ts 文件, 可以让 example 引 src 的代码。 ``` js // config.ts import path from 'path'; import { defineConfig } from 'umi'; const srcPath = path.resolve(__dirname, '../../src'); const...

@erikras i have same problem! it seem that, the officel demo everything is fine. https://codesandbox.io/s/react-final-form-field-arrays-forked-bb6ly?file=/index.js ![125](https://user-images.githubusercontent.com/5987056/147808925-389f98ae-d980-4d48-a483-65117b1ddb31.gif) [email protected] is fine. but when i update version of libs, i got the same...

May be the same problem! you need to add `validateFields={[]}` to all fields in FieldArray and comany field. although,add/remove array item making re-render all fields https://github.com/final-form/react-final-form-arrays/issues/168 https://codesandbox.io/s/new-waterfall-vhlw2?file=/index.js ![vvvv](https://user-images.githubusercontent.com/5987056/147621266-8b32b756-d24d-4c99-aca4-2ad627ff684b.gif)

the current behavior is correct. one for value change,one for error message change!

我现在的做法是使用tmodjs 生成cmd模式,再使用grunt concat合并,页面加载时报模板错误。 cmd生成以下两个文件 tpl\memberList.js; tpl\memberView.js; 现在想把这两个文件合并成member.js ``` javascript seajs.config({ base: "../scripts/", alias: { "zepto": "zepto/zepto-cmd.min", "fastclick": "fastclick.min", "member": "tpl/member", //"member-list": "tpl/memberList", //"member-view": "tpl/memberView", "home": "modules/src/home" } }); seajs.use("home"); ```...

I also have the same problem. if using https everything is fine. but using http login will redirecting back to login page!