code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/src/os/ui/text/tuieditor.js b/src/os/ui/text/tuieditor.js @@ -466,6 +466,13 @@ os.ui.text.TuiEditorCtrl.prototype.setTargetBlankPropertyInLinks = function() { * Codemirror has the same issues that it did in simpleMDE with initalization. * Codemirror issue #798. when its put in a textarea with display none ...
1
diff --git a/package.json b/package.json "homepage": "https://react.lightningdesignsystem.com", "dependencies": { "airbnb-prop-types": "^2.5.3", - "babel-preset-stage-1": "^6.5.0", + "babel-preset-stage-1": "^6.22.0", "classnames": "^2.1.3", "lodash.assign": "^4.0.9", "lodash.compact": "^3.0.0", "@salesforce-ux/design-...
3
diff --git a/test/functional/specs/C2580.js b/test/functional/specs/C2580.js @@ -48,8 +48,7 @@ test("C2580: Command queueing test.", async () => { await getLibraryInfoCommand(); await t.expect(getAlloyCommandQueueLength()).eql(2); const alloyLibrary = fs.readFileSync("dist/standalone/alloy.js", "utf-8"); - const logger...
3
diff --git a/types/index.d.ts b/types/index.d.ts @@ -86,7 +86,7 @@ declare class Infobox { get(keys: string | string[]): Sentence | undefined | unknown image(): Image | null images: () => Image | null - json(options: object): object + json(options?: object): object keyValue(): object links(clue?: string): Link[] templa...
1
diff --git a/src/traces/contourcarpet/calc.js b/src/traces/contourcarpet/calc.js @@ -126,18 +126,15 @@ function heatmappishCalc(gd, trace) { // prepare the raw data // run makeCalcdata on x and y even for heatmaps, in case of category mappings var carpet = trace.carpetTrace; - var aax = carpet.aaxis, - bax = carpet.bax...
2
diff --git a/docs/api/Settings.md b/docs/api/Settings.md @@ -102,7 +102,7 @@ Store a value of a setting for a given key on a specific layer. ## Get a Document setting ```js -var setting = Settings.layerSettingForKey(document, 'my-key') +var setting = Settings.documentSettingForKey(document, 'my-key') ``` Return the val...
4
diff --git a/lib/tests/run_tests.js b/lib/tests/run_tests.js @@ -32,14 +32,23 @@ module.exports = { } async.waterfall([ - function getFiles(next) { - if (filePath.substr(-1) !== '/') { - return fs.access(filePath, (err) => { + function checkIfDir(next) { + if (filePath.substr(-1) === '/') { + return next(null, null); +...
1
diff --git a/static/admin/config.yml b/static/admin/config.yml @@ -5,6 +5,7 @@ backend: name: github repo: liferay-design/liferay.design branch: master # Branch to update (optional; defaults to master) + open_authoring: true local_backend: true media_folder: static/images/uploads
11
diff --git a/articles/sso/current/index.md b/articles/sso/current/index.md @@ -8,7 +8,7 @@ toc: false Single Sign On (SSO) occurs when a user logs in to one application and is then signed in to other applications automatically, regardless of the platform, technology, or domain the user is using. ::: note -[Universal lo...
3
diff --git a/src/components/general/character-select/CharacterSelect.jsx b/src/components/general/character-select/CharacterSelect.jsx @@ -270,8 +270,8 @@ export const CharacterSelect = () => { sounds.playSoundName('menuBoop'); (async () => { - const localPlayer = await metaversefile.useLocalPlayer(); - await localPlay...
12
diff --git a/accessibility-checker-engine/src/v2/checker/accessibility/rules/rpt-ariaLabeling-rules.ts b/accessibility-checker-engine/src/v2/checker/accessibility/rules/rpt-ariaLabeling-rules.ts @@ -67,7 +67,7 @@ let a11yRulesLabeling: Rule[] = [ for (let j = 0; j < els.length; j++) { // Loop over all the parents of th...
2
diff --git a/iris/mutations/channel/deleteChannel.js b/iris/mutations/channel/deleteChannel.js @@ -51,7 +51,9 @@ export default async ( if ( currentUserCommunityPermissions.isOwner || - currentUserChannelPermissions.isOwner + currentUserChannelPermissions.isOwner || + currentUserCommunityPermissions.isModerator || + cu...
11
diff --git a/features/run.sh b/features/run.sh @@ -20,6 +20,6 @@ for endpoint in Embedded Proxy; do fi # profiles are defined in the cucumber.js file at the root of this project - ./node_modules/.bin/cucumber-js --format progress-bar --profile "${protocol}${endpoint}" + ./node_modules/.bin/cucumber-js --format progress...
13
diff --git a/app/shared/containers/Tools.js b/app/shared/containers/Tools.js @@ -73,10 +73,6 @@ class ToolsContainer extends Component<Props> { ]; } else { panes = [ - { - menuItem: t('tools_menu_contracts'), - render: () => <Tab.Pane><ContractInterface /></Tab.Pane>, - }, { menuItem: t('tools_menu_index'), render: () ...
12
diff --git a/src/charts/Bar.js b/src/charts/Bar.js @@ -59,7 +59,7 @@ class Bar { }) if (w.config.dataLabels.enabled) { - if (this.totalItems > w.config.plotOptions.bar.dataLabels.maxItems) { + if (this.totalItems > this.barOptions.dataLabels.maxItems) { console.warn( 'WARNING: DataLabels are enabled but there are too m...
11
diff --git a/iris/mutations/channel/restoreChannel.js b/iris/mutations/channel/restoreChannel.js @@ -44,7 +44,9 @@ export default async ( if ( currentUserCommunityPermissions.isOwner || - currentUserChannelPermissions.isOwner + currentUserChannelPermissions.isOwner || + currentUserCommunityPermissions.isModerator || + ...
11
diff --git a/examples/p5.js/querying-note-state/sketch.js b/examples/p5.js/querying-note-state/sketch.js @@ -7,12 +7,9 @@ async function setup() { // Display available inputs in console (use the name to retrieve it) console.log(WebMidi.inputs); - const input = WebMidi.getInputByName("nanoKEY2 KEYBOARD"); + const input ...
7
diff --git a/src/display/api.js b/src/display/api.js @@ -1248,17 +1248,17 @@ class PDFPageProxy { */ _tryCleanup(resetStats = false) { if (!this.pendingCleanup || - Object.keys(this.intentStates).some(function(intent) { + Object.keys(this.intentStates).some((intent) => { const intentState = this.intentStates[intent]; r...
14
diff --git a/lib/NormalModule.js b/lib/NormalModule.js @@ -61,7 +61,8 @@ class NonErrorEmittedError extends WebpackError { } } -const dependencyTemplatesHashMap = new WeakMap(); +/** @type {Map<string, string>} */ +const dependencyTemplatesHashMap = new Map(); class NormalModule extends Module { constructor({
4
diff --git a/components/measurement/Hero.js b/components/measurement/Hero.js @@ -55,7 +55,9 @@ const Hero = ({ status, color, icon, label, info }) => { </Box> </Flex> {info && <Flex flexWrap='wrap' justifyContent='center'> + <Text fontSize={28}> {info} + </Text> </Flex>} </Container> </HeroContainer>
12
diff --git a/CHANGES.md b/CHANGES.md @@ -25,6 +25,7 @@ Change Log * Only one node is supported. * Only one mesh per node is supported. * Only one primitive per mesh is supported. +* Updated documentation links to reflect new locations on cesium.com. ### 1.41 - 2018-01-02
3
diff --git a/src/utils/serve-functions.js b/src/utils/serve-functions.js @@ -91,9 +91,6 @@ function buildClientContext(headers) { } } -function createHandler(dir) { - const functions = getFunctions(dir) - const clearCache = action => path => { console.log(`${NETLIFYDEVLOG} ${path} ${action}, reloading...`) Object.keys(...
5
diff --git a/bin/gltf-pipeline.js b/bin/gltf-pipeline.js @@ -145,6 +145,7 @@ var argv = yargs type: 'number' }, 'draco.unifiedQuantization': { + default : false, describe: 'Quantize positions of all primitives using the same quantization grid defined by the unified bounding box of all primitives. If this option is not ...
9
diff --git a/src/libs/ValidationUtils.js b/src/libs/ValidationUtils.js @@ -256,7 +256,7 @@ function validateIdentity(identity) { * @param {Boolean} [isCountryCodeOptional] * @returns {Boolean} */ -function isValidUSPhone(phoneNumber, isCountryCodeOptional) { +function isValidUSPhone(phoneNumber = '', isCountryCodeOptio...
9
diff --git a/renderer/components/withIntl.js b/renderer/components/withIntl.js @@ -19,8 +19,6 @@ if (typeof window !== 'undefined' && window.OONITranslations) { } const withIntl = (Page) => { - const IntlPage = injectIntl(Page) - return class PageWithIntl extends Component { render () { const locale = getLocale() @@ -3...
2
diff --git a/articles/connections/passwordless/guides/best-practices.md b/articles/connections/passwordless/guides/best-practices.md @@ -53,8 +53,6 @@ Auth0 has the following protections against brute force attacks: * Only three failed attempts to input any single one-time-use code are allowed. After this, a new code w...
2
diff --git a/app/controllers/observations_controller.rb b/app/controllers/observations_controller.rb @@ -794,7 +794,7 @@ class ObservationsController < ApplicationController Photo.subclasses.each do |klass| klass_key = klass.to_s.underscore.pluralize.to_sym next unless params["#{klass_key}_to_sync"] && params["#{klass_...
1
diff --git a/app/builtin-pages/views/dat-sidebar.js b/app/builtin-pages/views/dat-sidebar.js @@ -269,7 +269,7 @@ function update () { ${renderTabs(currentSection, [ {id: 'files', label: 'Files', onclick: onClickTab('files')}, {id: 'log', label: 'History', onclick: onClickTab('log')}, - {id: 'metadata', label: 'Metadata...
10
diff --git a/src/lib/util.js b/src/lib/util.js @@ -61,7 +61,6 @@ const util = { * @returns {Boolean} */ onlyZeroWidthSpace: function (text) { - if (!text) return false; if (typeof text !== 'string') text = text.textContent; return text === '' || this.onlyZeroWidthRegExp.test(text); },
13
diff --git a/src/components/mdx/anchor-link.js b/src/components/mdx/anchor-link.js @@ -11,13 +11,17 @@ import IconExternalLink from "../icons/external-link" export default ({ href, className, children, ...props }) => { if (!href || !children) return (<a {...props}/>) + const isImageLink = typeof children === "object" &...
9
diff --git a/vis/stylesheets/modules/list/_header.scss b/vis/stylesheets/modules/list/_header.scss margin-right: 10px; } +@media screen and (max-width: 1650px) { + #filter_container input { + width: 240px; + } +} + +@media screen and (max-width: 1600px) { + #filter_container input { + width: 220px; + } +} + +@media scr...
7
diff --git a/components/amazon_ses/actions/send-an-email/send-an-email.mjs b/components/amazon_ses/actions/send-an-email/send-an-email.mjs @@ -5,7 +5,7 @@ export default { key: "amazon_ses-send-an-email", name: "Send an Email", description: "Send an email using Amazon SES", - version: "0.8.1", + version: "0.8.2", type:...
12
diff --git a/packages/idyll-document/test/__snapshots__/schema2element.js.snap b/packages/idyll-document/test/__snapshots__/schema2element.js.snap exports[`ReactJsonSchema can parse a schema 1`] = ` ShallowWrapper { - "length": 1, Symbol(enzyme.__root__): [Circular], Symbol(enzyme.__unrendered__): <div> <TextContainer>...
3
diff --git a/weapons-manager.js b/weapons-manager.js @@ -1649,7 +1649,32 @@ const _handleDamageCick = () => { /* _getAvatarCapsule(localVector); localVector.add(p); */ const collision = geometryManager.geometryWorker.collidePhysics(geometryManager.physics, radius, halfHeight, cylinderMesh.position, cylinderMesh.quatern...
0
diff --git a/generators/entity-server/templates/src/main/java/package/service/impl/EntityServiceImpl.java.ejs b/generators/entity-server/templates/src/main/java/package/service/impl/EntityServiceImpl.java.ejs @@ -186,7 +186,8 @@ public class <%= serviceClassName %><% if (service === 'serviceImpl') { %> imple @Override ...
1
diff --git a/packages/vue/src/components/organisms/SfStoreLocator/SfSToreLocator.stories.js b/packages/vue/src/components/organisms/SfStoreLocator/SfSToreLocator.stories.js @@ -251,15 +251,13 @@ storiesOf("Organisms|StoreLocator", module) }, components: { SfStoreLocator }, template: ` - <sf-store-locator :stores="store...
1
diff --git a/js/keybindings.js b/js/keybindings.js @@ -113,8 +113,14 @@ ipc.on('goForward', function () { } catch (e) { } }) +var menuBarShortcuts = ['mod+t', 'shift+mod+p', 'mod+n'] // shortcuts that are already used for menu bar items + function defineShortcut (keyMapName, fn) { Mousetrap.bind(keyMap[keyMapName], fun...
7
diff --git a/src/pages/settings/InitialSettingsPage.js b/src/pages/settings/InitialSettingsPage.js @@ -94,7 +94,7 @@ class InitialSettingsPage extends React.Component { this.getWalletBalance = this.getWalletBalance.bind(this); this.getDefaultMenuItems = this.getDefaultMenuItems.bind(this); - this.getMenuItems = this.ge...
10
diff --git a/ui/src/components/Property/Link.jsx b/ui/src/components/Property/Link.jsx @@ -35,7 +35,7 @@ class ValueLink extends Component { hoverOpenDelay={100} > <Link to={href} className="ValueLink"> - <Bp3Tag minimal interactive> + <Bp3Tag minimal interactive multiline> <Tag.Icon field={prop.type.group} /> <span>{c...
11
diff --git a/world.js b/world.js @@ -290,6 +290,7 @@ const _addObject = (dynamic, arrayName) => (contentId, position = new THREE.Vect }); if (pendingAddPromise) { const result = pendingAddPromise; + result.instanceId = instanceId; pendingAddPromise = null; return result; } else {
0
diff --git a/src/pages/about-data/visualization-guide/dashboard.module.scss b/src/pages/about-data/visualization-guide/dashboard.module.scss @@ -28,6 +28,11 @@ $chart-gutter-md: 100px; @media (min-width: $viewport-md) { max-width: $chart-two-col-lg-max-width * 2 + $chart-gutter-md; } + @media (min-width: $viewport-lg) ...
1
diff --git a/vr-ui.js b/vr-ui.js @@ -10,10 +10,10 @@ const localMatrix = new THREE.Matrix4(); const localMatrix2 = new THREE.Matrix4(); const localRaycater = new THREE.Raycaster(); -const makeTextMesh = (text = '', fontSize = 1, anchorX = 'left', anchorY = 'middle') => { +const makeTextMesh = (text = '', font = './Geos...
0
diff --git a/packages/node_modules/@node-red/runtime/lib/api/settings.js b/packages/node_modules/@node-red/runtime/lib/api/settings.js @@ -36,7 +36,15 @@ function extend(target, source) { } else { // Object if (target.hasOwnProperty(keys[i])) { + // Target property exists. Need to handle the case + // where the existin...
11
diff --git a/src/pages/signin/SignInPageLayout/SignInPageContent.js b/src/pages/signin/SignInPageLayout/SignInPageContent.js @@ -53,7 +53,7 @@ const SignInPageContent = props => ( > <View style={[ styles.componentHeightLarge, - ...(props.isSmallScreenWidth ? styles.mb2 : [styles.mt6, styles.mb5]), + ...(props.isSmallSc...
11
diff --git a/lib/sandbox.js b/lib/sandbox.js @@ -1371,7 +1371,8 @@ function sandBox(script, name, verbose, debug, context) { } } else { if (adapter.config.subscribe) { - sandbox.log('Cannot use sync getState, use callback instead getState("' + id + '", function (err, state){}); or disable the "Do not subscribe all stat...
7
diff --git a/src/NetworkConnection.js b/src/NetworkConnection.js @@ -7,7 +7,7 @@ class NetworkConnection { this.setupDefaultDCSubs(); this.connectedClients = {}; - this.dcIsActive = {}; + this.activeMessageChannels = {}; this.connected = false; this.onConnectedEvent = new Event('connected'); @@ -115,18 +115,18 @@ class...
10
diff --git a/js/webcomponents/bisweb_grapherelement.js b/js/webcomponents/bisweb_grapherelement.js @@ -250,6 +250,7 @@ class GrapherModule extends HTMLElement { return Promise.reject(); } + console.log('currentdata', this.currentdata); let dim = numeric.dim(this.currentdata.y); this.numframes = dim[1]; this.formatChart...
1
diff --git a/postcss/css-compile-variables.js b/postcss/css-compile-variables.js -import { Color } from "color"; +const Color = require("color"); let aliasMap; let resolvedMap; @@ -44,6 +44,21 @@ function extractAlias(decl) { } } +function addResolvedVariablesToRootSelector( root, variables, { Rule, Declaration }) { + ...
5
diff --git a/lib/model.js b/lib/model.js @@ -3187,10 +3187,14 @@ function assignVals(o) { } if (o.isVirtual && !o.justOne && !Array.isArray(rawIds[i])) { + if (rawIds[i] == null) { + rawIds[i] = []; + } else { rawIds[i] = [rawIds[i]]; } + } - if (o.isVirtual && docs[i].constructor.name === 'model' && docs[i].$init) { +...
1
diff --git a/src/models/responseResolver.js b/src/models/responseResolver.js @@ -82,7 +82,7 @@ function create (proxy, postProcess) { return result; } - function predicatesFor (request, matchers) { + function predicatesFor (request, matchers, logger) { var predicates = []; matchers.forEach(function (matcher) { @@ -106,...
4
diff --git a/src/pages/EnablePayments/TermsStep.js b/src/pages/EnablePayments/TermsStep.js @@ -106,7 +106,7 @@ class TermsStep extends React.Component { )} <Button success - style={[styles.mb4, styles.mt4]} + style={[styles.mv4]} text={this.props.translate('termsStep.enablePayments')} isLoading={this.props.walletTerms....
14
diff --git a/src/components/editorials/EditorialRenderables.js b/src/components/editorials/EditorialRenderables.js @@ -30,11 +30,20 @@ const headerStyle = css( const bodyStyle = css( s.relative, - s.zIndex4, s.fullWidth, s.selfEnd, ) +const subtitleStyle = css( + { ...bodyStyle }, + s.zIndex2, +) + +const toolsStyle = ...
11
diff --git a/weapons-manager.js b/weapons-manager.js @@ -1255,11 +1255,11 @@ const _updateMenu = () => { menu2El.classList.toggle('open', menuOpen === 2); menu3El.classList.toggle('open', menuOpen === 3); menu4El.classList.toggle('open', menuOpen === 4); - unmenuEl.classList.toggle('closed', menuOpen !== 0 || !!appMana...
2
diff --git a/token-metadata/0xBB1fA4FdEB3459733bF67EbC6f893003fA976a82/metadata.json b/token-metadata/0xBB1fA4FdEB3459733bF67EbC6f893003fA976a82/metadata.json "symbol": "XPAT", "address": "0xBB1fA4FdEB3459733bF67EbC6f893003fA976a82", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/src/components/apply/LoginCodeForm.js b/src/components/apply/LoginCodeForm.js import React, { Component } from 'react' -import { api } from 'data.json' +import { url as apiUrl } from 'api' import { Label, Input, Text, cx } from '@hackclub/design-system' import { withFormik } from 'formik' import yup from '...
1
diff --git a/src/components/general/character/Emotions.jsx b/src/components/general/character/Emotions.jsx @@ -101,9 +101,11 @@ export const Emotions = ({ if (action.type === 'facepose') { const {emotion, value} = action; const emotionIndex = emotions.indexOf(emotion); + if (emotionIndex !== -1) { const emotionState = ...
9
diff --git a/components/mapbox/ban-map/index.js b/components/mapbox/ban-map/index.js @@ -90,14 +90,21 @@ function BanMap({map, isSourceLoaded, popup, address, setSources, setLayers, onS }, [address, isCenterControlDisabled, map]) const isAddressVisible = useCallback(() => { - const {lng, lat} = map.getCenter() + const ...
14
diff --git a/SSAOPass.js b/SSAOPass.js @@ -35,12 +35,13 @@ const oldMaterialCache = new WeakMap(); class SSAOPass extends Pass { - constructor( scene, camera, width, height, depthPass ) { + constructor( scene, camera, width, height, filterFn, depthPass ) { super(); this.width = ( width !== undefined ) ? width : 512; th...
0
diff --git a/templates/public-vpc-support/index.js b/templates/public-vpc-support/index.js @@ -106,6 +106,7 @@ module.exports=Promise.resolve(require('../master')).then(function(base){ base.Conditions.BuildExamples={"Fn::Equals":[true,true]} base.Conditions.CreateDomain={"Fn::Equals":[true,true]} base.Conditions.DontCr...
1
diff --git a/RefreshEmptyModQueue.user.js b/RefreshEmptyModQueue.user.js // @description If current mod queue is empty, reload page occasionally // @homepage https://github.com/samliew/SO-mod-userscripts // @author @samliew -// @version 1.2.2 +// @version 1.3 // // @include https://*stackoverflow.com/* // @include http...
2
diff --git a/extensions/dbm_dashboard/dashboard_EXT/actions/mods/eval/index.js b/extensions/dbm_dashboard/dashboard_EXT/actions/mods/eval/index.js module.exports = { run: (DBM, req, res, Dashboard) => { try { + // eslint-disable-next-line no-eval let evaled = eval(req.body.code) if (typeof evaled !== 'string') evaled =...
8
diff --git a/website/site/data/updates.yml b/website/site/data/updates.yml updates: + - date: 2018-03-06 + version: '1.3.5' + description: Fixes styling issues + - date: 2018-03-06 + version: '1.3.4' + description: Fixes editorial workflow entry failure. + - date: 2018-03-06 + version: '1.3.3' + description: Fixes load...
3
diff --git a/articles/connections/calling-an-external-idp-api.md b/articles/connections/calling-an-external-idp-api.md @@ -154,3 +154,22 @@ For more information on how to request specific scopes for an Identity Provider ::: ## From the frontend + +If you are working with a public client (SPA, native desktop, or mobile ...
0
diff --git a/pages/bases-locales/publication.js b/pages/bases-locales/publication.js @@ -38,11 +38,11 @@ const getStep = submission => { } } -const PublicationPage = React.memo(({isRedirected, defaultSubmission, initialError, submissionId}) => { +const PublicationPage = React.memo(({isRedirected, defaultSubmission, sub...
7
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -678,6 +678,10 @@ metaversefile.setApi({ throw new Error('useResize cannot be called outside of render()'); } }, + getAppByInstanceId(instanceId) { + const r = _makeRegexp(instanceId); + return apps.find(app => r.test(app.instanceId)); + }, getAppByName(name) ...
0
diff --git a/phaser.js b/phaser.js @@ -19902,8 +19902,8 @@ PIXI.WebGLSpriteBatch.prototype.render = function (sprite, matrix) var b = wt.b / resolution; var c = wt.c / resolution; var d = wt.d / resolution; - var tx = sprite.roundPx ? Math.floor(wt.tx) : wt.tx; - var ty = sprite.roundPx ? Math.floor(wt.ty) : wt.ty; + v...
12
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: name: Add issue to project runs-on: ubuntu-latest steps: - - uses: actions/add-to-project@0.3.0 + - uses: actions/add-to-project@v0.3.0 with: # You can target a repository in a different organization # to the issue
12
diff --git a/site/src/components/Home.js b/site/src/components/Home.js @@ -455,7 +455,7 @@ class HomePage extends Component { color: primary, }} > - Read More + Read Now </SecondaryLink> </div> </ImageCard>
3
diff --git a/src/apps.json b/src/apps.json ], "icon": "BugSnag.png", "js": { - "Bugsnag": "" + "Bugsnag": "", + "bugsnag": "", + "bugsnagClient": "" }, - "script": "bugsnag.*\\.js", + "script": "/bugsnag.*\\.js", "website": "http://bugsnag.com" }, "Bugzilla": {
7
diff --git a/src/scss/components/_modal.scss b/src/scss/components/_modal.scss .background { position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; + top: -5vh; + right: -5vw; + bottom: -5vh; + left: -5vw; + width: auto; opacity: 0.2; max-width: none;
1
diff --git a/.eslintrc.json b/.eslintrc.json "accessor-pairs": "warn", "array-callback-return": "error", - "complexity": "warn", + "complexity": ["warn", 25], "consistent-return": "error", "curly": ["error", "multi-line", "consistent"], "dot-location": ["error", "property"],
11
diff --git a/src/technologies.json b/src/technologies.json "icon": "FancyBox.png", "implies": "jQuery", "js": { - "$.fancybox.version": "^(.+)$\\;version:\\1" + "$.fancybox.version": "^(.+)$\\;version:\\1", + "jQuery.fancybox.version": "^(.+)$\\;version:\\1", + "Fancybox.version": "^(.+)$\\;version:\\1" }, "scripts": "...
7
diff --git a/src/ApiGateway.js b/src/ApiGateway.js @@ -919,11 +919,16 @@ module.exports = class ApiGateway { } createResourceRoutes() { - if (!this._options.resourceRoutes) return true + if (!this._options.resourceRoutes) { + return + } + const resourceRoutesOptions = this._options.resourceRoutes const resourceRoutes =...
2
diff --git a/metaverse_modules/overworld/index.js b/metaverse_modules/overworld/index.js @@ -12,6 +12,9 @@ export default e => { name: 'street', type: 'scene', start_url: './scenes/street.scn', + components: { + mode: 'detached', + }, }, { name: 'barrier',
0
diff --git a/server/services/updateViper.php b/server/services/updateViper.php @@ -12,23 +12,23 @@ use headstart\search; $INI_DIR = dirname(__FILE__) . "/../preprocessing/conf/"; $ini_array = library\Toolkit::loadIni($INI_DIR); -# persistence is a SQLitePersistence class with added Viper functionalities -$persistence =...
3
diff --git a/components/slack/new-message-in-conversation.js b/components/slack/new-message-in-conversation.js const slack = require('https://github.com/PipedreamHQ/pipedream/components/slack/slack.app.js') - module.exports = { name: "Slack - New Message In Conversation(s)", dedupe: "unique", @@ -77,6 +76,13 @@ module....
9
diff --git a/test/tests.js b/test/tests.js @@ -15,6 +15,7 @@ import "./base/DateComboBox.tests.js"; import "./base/DelegateFocusMixin.tests.js"; import "./base/DirectionCursorMixin.tests.js"; import "./base/Explorer.tests.js"; +import "./base/FilterListBox.tests.js"; import "./base/FormElementMixin.tests.js"; import "....
8
diff --git a/src/os/ui/header/scrollheader.js b/src/os/ui/header/scrollheader.js @@ -92,11 +92,7 @@ os.ui.header.ScrollHeaderCtrl = function($scope, $element, $timeout, $attrs) { * @type {boolean} * @private */ - // Turning off position: sticky as there are some issues with z-index - // and creating new stacking contex...
1
diff --git a/src/core/operations/ToTable.mjs b/src/core/operations/ToTable.mjs @@ -20,7 +20,7 @@ class ToTable extends Operation { this.name = "To Table"; this.module = "Default"; - this.description = "Data can be split on different characters and rendered as an HTML or ASCII table with an optional header row.<br><br>S...
0
diff --git a/test/unit/util/project-fetcher-hoc.test.jsx b/test/unit/util/project-fetcher-hoc.test.jsx @@ -35,11 +35,17 @@ describe('ProjectFetcherHOC', () => { expect(mockSetProjectIdFunc.mock.calls[0][0]).toBe('100'); }); test('when there is a reduxProjectId and isFetchingWithProjectId is true, it loads the project',...
7
diff --git a/app/src/scripts/dataset/dataset.statuses.jsx b/app/src/scripts/dataset/dataset.statuses.jsx @@ -25,6 +25,7 @@ class Statuses extends Reflux.Component { return ( <span className="clearfix status-wrap"> + <Status type="stars" title={stars} display={true} /> <Status type="public" minimal={minimal} @@ -44,7 +4...
5
diff --git a/token-metadata/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/metadata.json b/token-metadata/0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F/metadata.json "symbol": "EMTRG", "address": "0xBd2949F67DcdC549c6Ebe98696449Fa79D988A9F", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED...
3
diff --git a/src/traces/surface/convert.js b/src/traces/surface/convert.js @@ -105,10 +105,6 @@ function isColormapCircular(colormap) { ); } -var highlyComposites = [1, 2, 4, 6, 12, 24, 36, 48, 60, 120, 180, 240, 360, 720, 840, 1260]; - -var MIN_RESOLUTION = 140; //35; //highlyComposites[9]; - var shortPrimes = [ 2, 3,...
4
diff --git a/src/renderer/home/index.jsx b/src/renderer/home/index.jsx @@ -115,7 +115,7 @@ class Home extends PureComponent { className={classes.scrollFix} > <Grid item> - <SKLogo /> + <img src={SKLogo} /> </Grid> {/* <Grid item> <Typography variant="h2" className={classes.primaryTintText}>
1
diff --git a/avatars/vrarmik/ShoulderTransforms.js b/avatars/vrarmik/ShoulderTransforms.js @@ -6,14 +6,23 @@ import VRArmIK from './VRArmIK.js'; class ShoulderTransforms { constructor(rig) { this.chest = new THREE.Object3D(); + this.chest.name = 'ikChest'; this.upperChest = new THREE.Object3D(); + this.upperChest.name ...
0
diff --git a/layouts/partials/helpers/fragments.html b/layouts/partials/helpers/fragments.html {{- $name := replace .Name "/index" "" -}} {{- if ne $root.File nil -}} {{- $directory_same_name := in ($page_scratch.Get "fragments_directory_name") (printf "%s%s/" $root.File.Dir (replace $name ".md" "")) -}} - {{- if and (...
2
diff --git a/webpack/builder/webpack.prod.config.js b/webpack/builder/webpack.prod.config.js // more control of the output bundle in order to fix unexpected behavior in old browsers. const webpack = require('webpack'); +const ExtractTextPlugin = require('extract-text-webpack-plugin'); +const CopyWebpackPlugin = require...
4
diff --git a/src/components/selections/select.js b/src/components/selections/select.js @@ -26,9 +26,7 @@ var newSelections = require('./draw_newselection/newselections'); var Lib = require('../../lib'); var polygon = require('../../lib/polygon'); var throttle = require('../../lib/throttle'); -var axisIds = require('../...
13
diff --git a/appveyor.yml b/appveyor.yml @@ -186,9 +186,7 @@ install: # [1]: https://github.com/felixrieseberg/windows-build-tools # [2]: https://github.com/nodejs/node-gyp#installation - cmd: npm install --global --production windows-build-tools - - cmd: set PATH=%PATH:C:\msys64\usr\bin\python2.EXE;=% - - cmd: set PAT...
12
diff --git a/src/v2-routes/v2-capsules.js b/src/v2-routes/v2-capsules.js const express = require("express") const v2 = express.Router() +const asyncHandle = require("express-async-handler") -// Returns all capsule data -v2.get("/", (req, res, next) => { - global.db.collection("dragon").find({},{"_id": 0 }).toArray((err...
3
diff --git a/src/containers/language-selector.jsx b/src/containers/language-selector.jsx @@ -13,11 +13,13 @@ class LanguageSelector extends React.Component { bindAll(this, [ 'handleChange' ]); + document.documentElement.lang = this.props.currentLocale; } handleChange (e) { const newLocale = e.target.value; if (this.pro...
12
diff --git a/packages/vulcan-lib/lib/server/mutators.js b/packages/vulcan-lib/lib/server/mutators.js @@ -89,8 +89,9 @@ export const createMutator = async ({ collection, document, data, currentUser, v for(let fieldName of Object.keys(schema)) { let autoValue; if (schema[fieldName].onCreate) { + // OpenCRUD backwards com...
10
diff --git a/tests/e2e/specs/modules/analytics/setup-with-account-no-tag.test.js b/tests/e2e/specs/modules/analytics/setup-with-account-no-tag.test.js @@ -6,7 +6,13 @@ import { activatePlugin, createURL, visitAdminPage } from '@wordpress/e2e-test-u /** * Internal dependencies */ -import { wpApiFetch, deactivateAllOther...
3
diff --git a/components/circle-link.js b/components/circle-link.js @@ -3,11 +3,11 @@ import PropTypes from 'prop-types' import theme from '@/styles/theme' -function CircleLink({size, href, isExternal, icon, fontSize, isImportant, isDisable, children}) { +function CircleLink({size, href, isExternal, icon, label, fontSiz...
0
diff --git a/src/leader-election.js b/src/leader-election.js @@ -90,6 +90,19 @@ LeaderElection.prototype = { return PROMISE_RESOLVED_TRUE; } let stopCriteria = false; + let stopCriteriaPromiseResolve; + /** + * Resolves when a stop criteria is reached. + * Uses as a performance shortcut so we do not + * have to await t...
7
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -38,6 +38,7 @@ import * as procgen from './procgen/procgen.js'; import {getHeight} from './avatars/util.mjs'; import performanceTracker from './performance-tracker.js'; import renderSettingsManager from './rendersettings-manager.js'; +import questManager from ...
0
diff --git a/data/operators/amenity/library.json b/data/operators/amenity/library.json "operator": "Chicago Public Library" } }, + { + "displayName": "Cincinnati and Hamilton County Public Library", + "id": "cincinnatiandhamiltoncountypubliclibrary-f8d891", + "locationSet": { + "include": ["us-oh.geojson"] + }, + "matc...
10
diff --git a/gobblefile.js b/gobblefile.js @@ -100,7 +100,7 @@ function buildESLib(dest, excludedModules) { banner: banner, cache: false, sourceMap: true - }).transform(transpile, { accept: ['.js'] }).transform(replacePlaceholders); + }).transform(transpile, { accept: ['.js', '.mjs'] }).transform(replacePlaceholders); ...
11
diff --git a/browser/lib/transport/xhrrequest.js b/browser/lib/transport/xhrrequest.js @@ -33,8 +33,8 @@ var XHRRequest = (function() { /* Safari mysteriously returns 'Identity' for transfer-encoding when in fact * it is 'chunked'. So instead, decide that it is chunked when * transfer-encoding is present or content-len...
7
diff --git a/packages/embark/src/lib/modules/deployment/contract_deployer.js b/packages/embark/src/lib/modules/deployment/contract_deployer.js @@ -302,7 +302,7 @@ class ContractDeployer { next(); }, function estimateCorrectGas(next) { - if (contract.gas === 'auto') { + if (contract.gas === 'auto' || !contract.gas) { re...
1