Kim, Harim

Results 17 comments of Kim, Harim

For anyone who will use django-rest-auth with django-rest-framework-simple-jwt, it is not supported yet. Here(https://github.com/Tivix/django-rest-auth/issues/430) you can find an issue about supporting simple-jwt.

Will it also apply for Korean? I'm ready for being beta-testing tho

@kishorenc Hello! I tried both local environment and [most used online address finder](https://postcode.map.daum.net/guide) in Korea (Daum Post Code Service) and this is result. Google address spreadsheet I used for test:...

@ted-millie 님 말씀대로, 스크롤 이벤트에 `{ passive: true }`는 필요없다고 합니다. 스크롤 이벤트는 이미 스크롤이 발생(triggered)한 뒤의 로직이기 때문이죠. 아래는 각각 MDN과 The Modern JavaScript Tutorial에서 발췌한 내용입니다. [MDN -...

Is it the same when you request data through REST API?

I reproduced it with sqlite too ```js [Error: delete from `addresses` where (`t2`.`id` = 1) - SQLITE_ERROR: no such column: t2.id] { errno: 1, code: 'SQLITE_ERROR' } ``` And I...

### Temporary workaround assume that.. ``` api::address.address - A api::category.category - B (has many addresses) ``` #### Example ```js let addressItems; try { addressItems = await strapi .query("api::address.address") .findMany({ where:...

Confirmed. If you run `strapi.entityService.findMany`, `publicationState: live` filter is not applied by default. The `publicationState` filter is applied when auto-generates content-type. https://github.com/strapi/strapi/blob/50733c4f51a7ad5fa2522950fbe05fd097afbce5/packages/core/strapi/lib/core-api/controller/collection-type.js#L24 https://github.com/strapi/strapi/blob/50733c4f51a7ad5fa2522950fbe05fd097afbce5/packages/core/strapi/lib/core-api/service/collection-type.js#L29-L37 https://github.com/strapi/strapi/blob/50733c4f51a7ad5fa2522950fbe05fd097afbce5/packages/core/strapi/lib/core-api/service/index.js#L30-L40 As you can see the code,...

I suppressed the message by add [string-replace-loader](https://github.com/Va1/string-replace-loader) in webpack config rules. ```js // webpack.config.js module.exports = { // ... module: { rules: [ { test: /froala_editor\.pkgd\.min\.css$/, loader: 'string-replace-loader', options: {...