‮Artem

Results 3 comments of ‮Artem

In my understanding `has_global_records ` doesn't mean ALL records are global for model, so it makes sense that in strict mode with `require_tenant = true` it raises exception (I assume...

test to reproduce this: https://github.com/artplan1/acts_as_tenant/commit/5b246403e6d11e045c79fab83b7cc07c4e231295 summary: ```ruby allow(ActsAsTenant.configuration).to receive_messages(require_tenant: true) ... ActsAsTenant.current_tenant = nil ... expect(GlobalProject.new(name: "foo new").valid?).to be(true) ``` error: ``` 1) ActsAsTenant tenant required does not raise an...

@afc163 sorry, it was codesandbox with width fix, here's without fix: https://codesandbox.io/s/antd-reproduction-template-forked-zvycus?file=/index.js difference is ``` scroll={{ y: 240 }} ``` vs fixed ``` scroll={{ y: 240, x: columns.length * 150...