Last analyzed acb8a69 23 days ago
Default analysis branch is
Currently analyzing run
Avoid use of == and != JS-0050
Anti-pattern
2 months ago7 months old
Expected '!==' and instead saw '!='.
298		const blockProps = useBlockProps.save( {
299			className:
300				'group-modal modal fade'
301				+ ( attributes.modalShow != 'default' ? attributes.modalShow : '' )302			,
303			'data-bs-backdrop' : attributes.modalBackdrop,
304			'data-bs-keyboard' : attributes.modalKeyboard,
Expected '!==' and instead saw '!='.
309			className:
310			'modal-dialog'
311			+ ( attributes.modalAlign ? ' modal-dialog-centered' : '' )
312			+ ( attributes.modalSize != 'default' ? attributes.modalSize : '' )313			,
314		});
315
Expected '!==' and instead saw '!='.
573export function UserRemind( {slugname} ){
574	let message = __( 'No category selected. ', 'ekiline-collection' );
575	let classname = 'editor-modal-route';
576	if ( slugname.length != 0){577		let element = slugname?.map(( el ) => ( el ));
578		message = __( 'Selected categories: ', 'ekiline-collection' ) + element ;
579		classname = classname + ' has-anchor';
Expected '!==' and instead saw '!='.
290				// Guardar array en propiedades de bloque.
291				const savethis = (newval)=>setAttributes({SavePosts:newval});
292				// Si no hay dato en el bloque o si no tienen la misma extension el dato guardado con el nuevo array.
293				if( !postsStored || ! postsStored?.length > 0 || nuevoArray?.length != postsStored?.length ){294					savethis(nuevoArray);
295				}
296			}