code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/src/ace/AceGmlCommands.hx b/src/ace/AceGmlCommands.hx @@ -12,6 +12,15 @@ class AceGmlCommands { inline function wm(win:String, mac:String):AceCommandKey { return { win: win, mac: mac }; } + commands.addCommand({ + name: "startAutocomplete", + exec: function(editor:AceWrap) { + if (editor.completer != null)...
11
diff --git a/src/encoded/schemas/mixins.json b/src/encoded/schemas/mixins.json "5' RLM RACE", "MNase-seq" ] - }, - "assay_term_id": { - "@type": "@id", - "title": "Assay ID", - "description": "OBI (Ontology for Biomedical Investigations) ontology identifier for the assay.", - "type": "string", - "comment": "Based on th...
2
diff --git a/src/lib/collections.ts b/src/lib/collections.ts import StreamClient, { APIResponse } from './client'; import errors from './errors'; -type CollectionResponse<CollectionType> = { +type BaseCollection<CollectionType> = { collection: string; id: string; data: CollectionType; +}; + +type CollectionResponse<Col...
1
diff --git a/Source/Widgets/CesiumInspector/Cesium3DTilesInspector.js b/Source/Widgets/CesiumInspector/Cesium3DTilesInspector.js @@ -288,7 +288,7 @@ define([ slider.min = min; slider.max = max; slider.step = step; - slider.setAttribute('data-bind', 'value: ' + property); + slider.setAttribute('data-bind', 'valueUpdate:...
3
diff --git a/README.md b/README.md @@ -127,6 +127,8 @@ package = "./plugins/netlify-plugin-hello-world" (Note that each plugin you add to the `netlify.toml` file has its own `[[plugins]]` line.) +Local plugins `package` value must start with `.` or `/`. + Now that the plugin is declared, we can verify it's loading corr...
7
diff --git a/packages/component-library/src/Sandbox/Sandbox.js b/packages/component-library/src/Sandbox/Sandbox.js import PropTypes from "prop-types"; import React from "react"; import { css } from "emotion"; - import BaseMap from "../BaseMap/BaseMap"; import CivicSandboxMap from "../CivicSandboxMap/CivicSandboxMap"; i...
2
diff --git a/avatars/util.mjs b/avatars/util.mjs @@ -522,6 +522,7 @@ export const cloneModelBones = modelBones => { const nameToDstBoneMap = {}; for (const k in modelBones) { const srcBone = modelBones[k]; + if (srcBone) { const dstBone = new THREE.Bone(); dstBone.name = srcBone.name; dstBone.position.copy(srcBone.posi...
0
diff --git a/controllers/user.js b/controllers/user.js -const async = require('async'); const crypto = require('crypto'); const nodemailer = require('nodemailer'); const passport = require('passport'); @@ -250,13 +249,11 @@ exports.postReset = (req, res, next) => { return res.redirect('back'); } - async.waterfall([ - f...
14
diff --git a/sox.github.js b/sox.github.js const $issue = $('#issue_body'); if ($issue.length) { $issue.prop('disabled', 'true'); - let issueText = $issue.text(); + const environmentText = ` +**Environment** +SOX version: ${version} +Platform: ${handler} +`; - issueText = issueText.replace('1.X.X', version); //inject t...
4
diff --git a/README.md b/README.md @@ -59,6 +59,19 @@ The security token registry keeps track of deployed STs on the Polymath Platform ### ModuleRegistry Modules allow custom add-in functionality in the issuance process and beyond. The module registry keeps track of modules added by Polymath or any other users. Modules...
3
diff --git a/src/utils/live-tunnel.js b/src/utils/live-tunnel.js @@ -73,8 +73,9 @@ async function connectTunnel(session, netlifyApiToken, localPort, log) { } async function installTunnelClient(log) { + const win = isWindows(); const binPath = path.join(os.homedir(), ".netlify", "tunnel", "bin"); - const execName = isWi...
5
diff --git a/src/components/button/Button.js b/src/components/button/Button.js @@ -188,7 +188,7 @@ export default class ButtonComponent extends Field { if (this.component.action === 'event') { this.on('change', (value) => { - const isValid = this.root.isValid(value.data, true); + const isValid = value && value.hasOwnPr...
7
diff --git a/sirepo/package_data/static/js/sirepo-components.js b/sirepo/package_data/static/js/sirepo-components.js @@ -677,6 +677,9 @@ SIREPO.app.directive('fieldEditor', function(appState, keypressService, panelSta '<div class="form-control-static" data-ng-if="model.valueList[field].length == 1">{{ model.valueList[f...
1
diff --git a/app_web/index.html b/app_web/index.html @@ -111,7 +111,7 @@ function getUrlParam(parameter, defaultvalue){ </div> </div> </div> - <b-tabs vertical position="is-right" v-model="activeTab" class="is-flex-wrap-nowrap" type="is-toggle"> + <b-tabs vertical position="is-right" v-model="activeTab" class="is-flex-...
2
diff --git a/bundleSize.js b/bundleSize.js @@ -18,11 +18,11 @@ Object.entries(oldValues).forEach(([name, size]) => { const newSize = newValues[name]; const delta = newSize - size; const sizeColorFg = delta <= 0 ? '\x1b[32m' : '\x1b[31m'; - const reset = '\x1b[0m'; + const resetColorFg = '\x1b[0m'; const nameColorFg = '...
10
diff --git a/userscript.user.js b/userscript.user.js @@ -5277,7 +5277,7 @@ var $$IMU_EXPORT$$; try { var deviation = initialstate["@@entities"].deviation[deviationid]; - //console_log(deviation); + console_log(deviation); if (deviation.title) obj.extra.caption = deviation.title; @@ -5299,12 +5299,22 @@ var $$IMU_EXPORT...
7
diff --git a/procgen-manager.js b/procgen-manager.js import {murmurhash3} from './procgen/procgen.js'; import {DcWorkerManager} from './dc-worker-manager.js'; import {LodChunkTracker} from './lod.js'; +import {LightMapper} from './light-mapper.js'; import {defaultChunkSize} from './constants.js'; // import {getLocalPla...
0
diff --git a/.github/workflows/reusable-app-prod.yml b/.github/workflows/reusable-app-prod.yml @@ -197,22 +197,22 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Get yarn cache dir - id: yarn-cache-dir - run: | - echo "::set-output name=value::`yarn cache dir --silent`" + - uses: actions/setup-node@v3 + with: + n...
7
diff --git a/Makefile b/Makefile @@ -39,7 +39,7 @@ create-html-runners: build/test test/tests.tpl.html test/JasmineRunner.tpl.html .PHONY: create-html-runners test-phantomjs: create-html-runners ${TARGETS} - phantomjs ./node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js test/tests.html spec "`node -pe 'JSON.stri...
1
diff --git a/packages/stockflux-launcher/src/app-shortcuts/AppShortcuts.js b/packages/stockflux-launcher/src/app-shortcuts/AppShortcuts.js @@ -14,7 +14,9 @@ export default () => { return ( < div className="app-shortcuts" > - {apps + { + + apps .filter( app => app.customConfig !== undefined && @@ -29,8 +31,9 @@ export d...
3
diff --git a/packages/bitcore-wallet-service/test/expressapp.js b/packages/bitcore-wallet-service/test/expressapp.js @@ -17,7 +17,7 @@ var { WalletService } = require('../ts_build/lib/server'); describe('ExpressApp', function() { describe('#constructor', function() { it('will set an express app', function() { - var Tes...
3
diff --git a/assets/js/components/legacy-setup/wizard-step-authentication.js b/assets/js/components/legacy-setup/wizard-step-authentication.js @@ -97,7 +97,6 @@ class WizardStepAuthentication extends Component { WizardStepAuthentication.propTypes = { connectURL: PropTypes.string.isRequired, - helpVisibilityEnabled: Pro...
2
diff --git a/src/traces/parcoords/parcoords.js b/src/traces/parcoords/parcoords.js @@ -458,7 +458,7 @@ module.exports = function(root, svg, parcoordsLineLayers, styledData, layout, ca .each(function(d) { if(d.viewModel) { if((!d.lineLayer) || - (callbacks)) { // recreate in case of having callbacks e.g. restyle, Should...
3
diff --git a/lib/nodes/addon/components/driver-oci/component.js b/lib/nodes/addon/components/driver-oci/component.js @@ -185,11 +185,15 @@ export default Component.extend(NodeDriver, { if (!get(this, 'config.subnetId') || !get(this, 'config.subnetId').startsWith('ocid1.subnet')) { errors.push('Specifying a valid oci su...
9
diff --git a/learn/configuration/instance_options.md b/learn/configuration/instance_options.md @@ -378,11 +378,11 @@ Sets the maximum size of [accepted payloads](/learn/core_concepts/documents.md#d Activates scheduled snapshots. Snapshots are disabled by default. -It is possible to use `--schedule-snapshot` as a flag. ...
7
diff --git a/Apps/Sandcastle/CesiumSandcastle.css b/Apps/Sandcastle/CesiumSandcastle.css @@ -174,6 +174,17 @@ a.linkButton:focus, a.linkButton:hover { overflow: hidden; } +.bottomPanel #innerPanel_tablist { + overflow-y: hidden!important; + max-height: 34px; +} + +@media (max-width: 1064px){ + .bottomPanel #innerPanel_...
12
diff --git a/character-controller.js b/character-controller.js @@ -56,6 +56,18 @@ class UniActionInterpolant extends Interpolant { } } } +class ModActionInterpolant extends Interpolant { + constructor(fn, minValue) { + super(fn, minValue); + } + update(timeDiff) { + if (this.fn()) { + this.value += timeDiff; + } else {...
0
diff --git a/storage.js b/storage.js @@ -578,7 +578,7 @@ function determineWitnessedLevelAndBestParent(conn, arrParentUnits, arrWitnesses if (level === null) throw Error("null level in updateWitnessedLevel"); if (level === 0) // genesis - return handleWitnessedLevelAndBestParent(0, null); + return handleWitnessedLevelA...
12
diff --git a/userscript.user.js b/userscript.user.js @@ -57872,6 +57872,7 @@ var $$IMU_EXPORT$$; var current_chord = []; var current_chord_timeout = {}; var release_ignore = []; + var editing_text = false; function resetifout(e) { // doesn't work, as e doesn't contain ctrlKey etc. @@ -58933,6 +58934,7 @@ var $$IMU_EXPO...
8
diff --git a/src/client/js/components/PageStatusAlert.jsx b/src/client/js/components/PageStatusAlert.jsx @@ -80,7 +80,7 @@ class PageStatusAlert extends React.Component { &nbsp; <i className="fa fa-angle-double-right"></i> &nbsp; - <a onClick={this.refreshPage}> + <a href="#" onClick={this.refreshPage}> {label2} </a> <...
12
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md @@ -55,7 +55,7 @@ further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting hello@hikaya.io, which is a shared team inbox. If the incident involves someone w...
3
diff --git a/pages/community/donate.js b/pages/community/donate.js +import Link from 'next/link'; import Layout from '../../components/Layout'; import Content from '../../components/resources/Content'; @@ -8,12 +9,36 @@ export default () => ( <Content> <div className="rubygems"> <h1>Donate to Support Development</h1> -...
14
diff --git a/src/menelaus_web_buckets.erl b/src/menelaus_web_buckets.erl @@ -1408,20 +1408,20 @@ parse_validate_replica_index("1") -> {ok, replica_index, true}; parse_validate_replica_index(_ReplicaValue) -> {error, replicaIndex, <<"replicaIndex can only be 1 or 0">>}. parse_validate_compression_mode(Params, BucketConf...
12
diff --git a/src/server/services/generator/index.js b/src/server/services/generator/index.js const fs = require('fs-extra') const path = require('path') +const debug = require('debug')('services:generator') const { User, Repo } = require('../../models') @@ -11,8 +12,10 @@ module.exports = { * Generate data. */ async ge...
3
diff --git a/packages/app/src/styles/_sidebar.scss b/packages/app/src/styles/_sidebar.scss @mixin drawer() { z-index: $zindex-fixed + 2; - // override @atlaskit/navigation-next styles + .data-layout-container { + width: 0; + } div.navigation { max-width: 80vw;
12
diff --git a/scenes/street.scn b/scenes/street.scn 0, 0.7071067811865475 ], - "scale": [ - 2, - 2, - 2 - ], - "physics": false, - "start_url": "https://avaer.github.io/sakura/index.glbb", + "start_url": "https://yaserosource.github.io/material-debug-assets/MaterialDebug_MTOON_vian.vrm", "dynamic": true }, {
0
diff --git a/test/sol6/kyberStorage.js b/test/sol6/kyberStorage.js @@ -551,8 +551,13 @@ contract('KyberStorage', function(accounts) { reserves = await kyberStorage.getReservesPerType(reserve.onChainType); Helper.assertEqualArray(reserves, [reserve.reserveId], "reserve arrays not equal"); + let reserveAddresses = await ...
7
diff --git a/db.js b/db.js @@ -527,7 +527,12 @@ User.findById = function(id,callback){ }); } -// thumbnailDocument (optional) is the thumbnail document from the collection + +// Creates a new Thumbnail which represents the thumbnails stored in the +// database. Thumbnails are 2D representation of the path a file is des...
0
diff --git a/articles/quickstart/webapp/aspnet-owin/_includes/_login.md b/articles/quickstart/webapp/aspnet-owin/_includes/_login.md @@ -6,7 +6,13 @@ The easiest way to enable authentication with Auth0 in your ASP.NET MVC applicat Install-Package Auth0-ASPNET-Owin ``` -Now go to the `Configuration` method of your `Star...
0
diff --git a/src/routes.json b/src/routes.json { "name": "annual-report", "pattern": "^/annual-report/?$", - "routeAlias": "/annual-report/?$", + "routeAlias": "/annual-report/?(?:\?.*)$", "view": "annual-report/annual-report", "title": "Annual Report", "viewportWidth": "device-width"
11
diff --git a/lighthouse-core/gather/gather-runner.js b/lighthouse-core/gather/gather-runner.js @@ -105,8 +105,12 @@ class GatherRunner { // We dont need to hold up the reporting for the reload/disconnect, // so we will not return a promise in here. log.log('status', 'Disconnecting from browser...'); - driver.disconnect...
8
diff --git a/public/javascripts/SVLabel/src/SVLabel/onboarding/InitialMissionInstruction.js b/public/javascripts/SVLabel/src/SVLabel/onboarding/InitialMissionInstruction.js @@ -20,9 +20,9 @@ function InitialMissionInstruction(compass, mapService, neighborhoodContainer, p var neighborhood = neighborhoodContainer.getCurr...
3
diff --git a/articles/api-auth/tutorials/implicit-grant.md b/articles/api-auth/tutorials/implicit-grant.md @@ -41,7 +41,7 @@ Where: Auth0 returns profile information in a [structured claim format as defined by the OIDC specification](https://openid.net/specs/openid-connect-core-1_0.html#StandardClaims). This means that...
3
diff --git a/www/tablet/js/widget_departure.js b/www/tablet/js/widget_departure.js @@ -157,7 +157,7 @@ var Modul_departure = function () { var text = ''; var n = 0; var collection = JSON.parse(list); - for ( var idx = 0; idx < collection.length; idx++) { + for ( var idx = 0, len = collection.length; idx < len; idx++) {...
1
diff --git a/web/index.js b/web/index.js import {AppRegistry} from 'react-native'; import App from '../src/App'; import {name as appName} from '../app.json'; -import checkForUpdates from '../src/lib/checkForUpdates'; -import HttpUtils from '../src/lib/HttpUtils'; -import Visibility from '../src/lib/Visibility'; +import...
10
diff --git a/assets/js/modules/optimize/setup.js b/assets/js/modules/optimize/setup.js @@ -45,7 +45,6 @@ class OptimizeSetup extends Component { const { optimizeID, - ampClientIDOptIn, ampExperimentJSON, } = global.googlesitekit.modules.optimize.settings; @@ -67,7 +66,6 @@ class OptimizeSetup extends Component { gtmUse...
2
diff --git a/src/components/views/Actions/core.js b/src/components/views/Actions/core.js @@ -242,7 +242,7 @@ class ActionsCore extends Component { value={selectedVoice} onChange={e => this.setState({ selectedVoice: e.target.value })} > - {(this.voices ? this.voices : []).map(c => ( + {this.voices.map(c => ( <option key...
1
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -2,12 +2,12 @@ version: 2.1 aliases: - &node_env - - image: circleci/node:16-bullseye + - image: cimg/node:16-bullseye - &node_mongo_env - - image: circleci/node:16-bullseye - - image: circleci/mongo:4.4 + - image: cimg/node:16-bullseye + - image: cimg/mongo:4...
4
diff --git a/src/components/general/equipment/Equipment.jsx b/src/components/general/equipment/Equipment.jsx @@ -6,6 +6,7 @@ import { MegaHotBox } from '../../play-mode/mega-hotbox'; import { Spritesheet } from '../spritesheet'; import game from '../../../../game.js'; import {transparentPngUrl} from '../../../../consta...
0
diff --git a/assets/js/modules/search-console/components/dashboard/SearchFunnelWidget/SearchConsoleStats.js b/assets/js/modules/search-console/components/dashboard/SearchFunnelWidget/SearchConsoleStats.js @@ -91,7 +91,7 @@ const SearchConsoleStats = ( { ); if ( isZeroChart ) { - options.vAxis.viewWindow.max = 100; + op...
12
diff --git a/services/component-orchestrator/src/drivers/kubernetes/KubernetesDriver.js b/services/component-orchestrator/src/drivers/kubernetes/KubernetesDriver.js @@ -187,8 +187,8 @@ class KubernetesDriver extends BaseDriver { }; } - _prepareEnvVars(flow, node, nodeQueues) { - let envVars = Object.assign({}, nodeQueu...
4
diff --git a/tests/e2e/Services/Functions/FunctionsConsoleClientTest.php b/tests/e2e/Services/Functions/FunctionsConsoleClientTest.php @@ -227,6 +227,16 @@ class FunctionsConsoleClientTest extends Scope $this->assertEquals(200, $response['headers']['status-code']); $this->assertCount(1, $response['body']['variables']);...
7
diff --git a/src/renderer/component/categoryList/view.jsx b/src/renderer/component/categoryList/view.jsx @@ -251,7 +251,7 @@ class CategoryList extends React.PureComponent<Props, State> { {obscureNsfw && isCommunityTopBids ? ( <div className="card__content help"> {__( - 'The community top bids section is only visible i...
10
diff --git a/package.json b/package.json "test:lint": "eslint src", "test:deps": "dependency-check ./package.json --entry \"src/**/!(*.test).js\" --unused --missing --no-dev --no-peer -i @oclif/plugin-not-found -i @oclif/config -i @oclif/plugin-help", "watch": "nyc --reporter=lcov ava --watch", - "prepack": "oclif-dev ...
2
diff --git a/app/builtin-pages/views/settings.js b/app/builtin-pages/views/settings.js @@ -126,7 +126,7 @@ function renderWorkspacePathSettings () { <p> <code>${settings.workspace_default_path}</code> - <button class="btn small" onclick=${onUpdateDefaultWorkspaceDirectory}> + <button class="btn" onclick=${onUpdateDefau...
4
diff --git a/src/renderer/scss/component/_table.scss b/src/renderer/scss/component/_table.scss @@ -29,7 +29,7 @@ table.table, td { font-family: 'metropolis-medium'; color: var(--color-help); - padding: $spacing-vertical * 1/3 $spacing-vertical * 1/3; + padding: $spacing-vertical * 1/6 $spacing-vertical * 1/3; .btn:not(...
13
diff --git a/generators/ci-cd/templates/.gitlab-ci.yml.ejs b/generators/ci-cd/templates/.gitlab-ci.yml.ejs @@ -291,7 +291,7 @@ maven-package: # dependencies: # - maven-package # script: -# - ./mvnw -ntp compile jib:build -Pprod -Djib.to.image=$IMAGE_TAG -Djib.to.auth.username=gitlab-ci-token -Djib.to.auth.password=$CI_...
2
diff --git a/src/views/teachers/landing/landing.jsx b/src/views/teachers/landing/landing.jsx @@ -40,22 +40,22 @@ const Landing = () => ( <SubNavigation className="inner"> <a href="#resources"> <li> - <FormattedMessage id="teacherlanding.resourcesAnchor" /> + <FormattedMessage id="teacherlanding.resourcesTitle" /> </li>...
10
diff --git a/assets/js/modules/optimize/components/common/PlaceAntiFlickerSwitch.js b/assets/js/modules/optimize/components/common/PlaceAntiFlickerSwitch.js * WordPress dependencies */ import { useCallback, createInterpolateElement } from '@wordpress/element'; -import { __, sprintf } from '@wordpress/i18n'; +import { _...
2
diff --git a/packages/app/src/server/routes/apiv3/security-setting.js b/packages/app/src/server/routes/apiv3/security-setting.js @@ -794,7 +794,7 @@ module.exports = (crowi) => { isPasswordResetEnabled: await crowi.configManager.getConfig('crowi', 'security:passport-local:isPasswordResetEnabled'), isEmailAuthentication...
10
diff --git a/assets/js/components/dashboard-sharing/UserRoleSelect.js b/assets/js/components/dashboard-sharing/UserRoleSelect.js @@ -28,7 +28,13 @@ import { Chip, ChipCheckmark } from '@material/react-chips'; */ import { __ } from '@wordpress/i18n'; import { ESCAPE, ENTER } from '@wordpress/keycodes'; -import { useCall...
1
diff --git a/src/angular/src/app/spark-core-angular/components/sprk-pagination/sprk-pagination.component.ts b/src/angular/src/app/spark-core-angular/components/sprk-pagination/sprk-pagination.component.ts @@ -160,12 +160,12 @@ export class SparkPaginationComponent { @Output() nextClick = new EventEmitter(); @Output() p...
3
diff --git a/packages/transformers/babel/src/config.js b/packages/transformers/babel/src/config.js @@ -177,14 +177,22 @@ function isLocal(/* configItemPath */) { function prepForReyhdration(options) { // ConfigItem.value is a function which the v8 serializer chokes on // It is being ommited here and will be rehydrated ...
1
diff --git a/InitMaster/script.json b/InitMaster/script.json "authors": "Richard E.", "roll20userid": "6497708", "useroptions": [], - "dependencies": ["RoundMaster","], + "dependencies": ["RoundMaster","libRPGMaster2e"], "modifies": { "state.initMaster": "read,write", "player.id": "read",
3
diff --git a/src/core/operations/Cipher.js b/src/core/operations/Cipher.js @@ -766,8 +766,8 @@ const Cipher = { * @returns {string} */ runSubstitute: function (input, args) { - let plaintext = Utils.expandAlphRange(args[0]).join(), - ciphertext = Utils.expandAlphRange(args[1]).join(), + let plaintext = Utils.expandAlph...
1
diff --git a/assets/js/modules/analytics/util/calculateOverviewData.test.js b/assets/js/modules/analytics/util/calculateOverviewData.test.js @@ -54,7 +54,6 @@ describe( 'calculateOverviewData', () => { ]; it.each( rangeData )( 'calculating data overview', ( data, expected ) => { const overviewData = calculateOverviewDa...
2
diff --git a/test/browser/lifecycle.js b/test/browser/lifecycle.js @@ -1618,10 +1618,10 @@ describe('Lifecycle methods', () => { return <div>{this.state.error ? String(this.state.error) : this.props.children}</div>; } } + // eslint-disable-next-line react/require-render-return class ErrorGeneratorComponent extends Comp...
1
diff --git a/app/src/main/index.js b/app/src/main/index.js @@ -151,7 +151,7 @@ function createWindow() { function startProcess(name, args, env) { let binPath - if (process.env.BINARY_PATH) { + if (process.NODE_ENV !== "testing" && process.env.BINARY_PATH) { binPath = process.env.BINARY_PATH } else if (DEV) { // in dev ...
8
diff --git a/lib/node_modules/@stdlib/math/base/tools/continued-fraction/docs/repl.txt b/lib/node_modules/@stdlib/math/base/tools/continued-fraction/docs/repl.txt > function closure() { ... var i = 0; ... return function() { - ... i++; + ... i += 1; ... return [ i, i ]; ... }; ... }; > function* generator() { ... var i...
14
diff --git a/src/app.js b/src/app.js @@ -81,7 +81,7 @@ async function main(){ app.get('/stats/:player/:profile?', async (req, res, next) => { let response; - let paramPlayer = req.params.player.toLowerCase().replace(/\-/g, ''); + let paramPlayer = req.params.player.toLowerCase().replace(/[^a-z\d\-\_:]/g, ''); let param...
14
diff --git a/src/components/molecules/SfBanner/SfBanner.stories.js b/src/components/molecules/SfBanner/SfBanner.stories.js @@ -5,7 +5,7 @@ import SfBanner from "./SfBanner.vue"; export default storiesOf("Banner", module) .addDecorator(withKnobs) - .add("Props filled", () => ({ + .add("Props", () => ({ components: { SfB...
10
diff --git a/articles/multifactor-authentication/custom-mfa-rules.md b/articles/multifactor-authentication/custom-mfa-rules.md @@ -5,8 +5,8 @@ description: Learn how you can add step-up authentication to your app with Auth0 # Step-Up Authentication with Custom MFA Rules -::: note -Auth0 now supports `amr` and `acr` cla...
3
diff --git a/src/components/source/mediaSource/suggest/SuggestSourceContainer.js b/src/components/source/mediaSource/suggest/SuggestSourceContainer.js @@ -6,7 +6,7 @@ import { connect } from 'react-redux'; import { Grid, Row, Col } from 'react-flexbox-grid/lib'; import composeIntlForm from '../../../common/IntlForm'; i...
10
diff --git a/ChatImprovements.user.js b/ChatImprovements.user.js // @description New responsive userlist with usernames and total count, more timestamps, use small signatures only, mods with diamonds, message parser (smart links), timestamps on every message, collapse room description and room tags, mobile improvements...
2
diff --git a/shared/js/ublock.js b/shared/js/ublock.js @@ -69,11 +69,8 @@ class UBlock { // http://en.www.googletagservices.com/some/other/random/path/gpt.js?v=123 // // All our rules have domain + filename, so for now we're safe making that assumption. - let a = document.createElement('a') - a.href = url - - let split...
2
diff --git a/src/directives/formBuilder.js b/src/directives/formBuilder.js @@ -212,7 +212,8 @@ module.exports = ['debounce', function(debounce) { label: component.label, key: component.key, lockKey: true, - source: resource._id + source: resource._id, + isNew: true } } ));
1
diff --git a/thali/NextGeneration/thaliWifiInfrastructure.js b/thali/NextGeneration/thaliWifiInfrastructure.js @@ -682,6 +682,13 @@ ThaliWifiInfrastructure.prototype._setUpEvents = function() { inherits(ThaliWifiInfrastructure, EventEmitter); +ThaliWifiInfrastructure.prototype._isDisconnected = function () { + var last...
1
diff --git a/src/services/donations/donations.hooks.js b/src/services/donations/donations.hooks.js @@ -104,7 +104,7 @@ const donationResolvers = { }, }; -const convertTokenToTokenSymbol = () => context => { +const convertTokenToTokenAddress = () => context => { const { data } = context; if (data.token) { data.tokenAddr...
10
diff --git a/packages/api-explorer/src/Variable.jsx b/packages/api-explorer/src/Variable.jsx @@ -38,6 +38,11 @@ class Variable extends React.Component { this.toggleVarDropdown = this.toggleVarDropdown.bind(this); this.toggleAuthDropdown = this.toggleAuthDropdown.bind(this); this.renderVarDropdown = this.renderVarDropdo...
1
diff --git a/packages/api-explorer/src/lib/Oas.js b/packages/api-explorer/src/lib/Oas.js @@ -64,16 +64,26 @@ class Operation { } } -class Oas { - constructor(oas, user) { - Object.assign(this, oas); - this.user = user || {}; +function ensureProtocol(url) { + // Add protocol to urls starting with // e.g. //example.com +...
5
diff --git a/modules/@apostrophecms/login/index.js b/modules/@apostrophecms/login/index.js @@ -388,7 +388,7 @@ module.exports = { async enableBearerTokens() { self.bearerTokens = self.apos.db.collection('aposBearerTokens'); - await self.bearerTokens.enableIndex({ expires: 1 }, { expireAfterSeconds: 0 }); + await self.b...
4
diff --git a/token-metadata/0x0d88eD6E74bbFD96B831231638b66C05571e824F/metadata.json b/token-metadata/0x0d88eD6E74bbFD96B831231638b66C05571e824F/metadata.json "symbol": "AVT", "address": "0x0d88eD6E74bbFD96B831231638b66C05571e824F", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/webpack.common.js b/webpack.common.js @@ -48,6 +48,7 @@ module.exports = { loader: 'eslint-loader', exclude: /node_modules|\.native.js$/, options: { + cache: false, emitWarning: true, }, },
12
diff --git a/sounds.js b/sounds.js @@ -31,6 +31,8 @@ const soundFiles = { menuLeft: _getSoundFiles(/PauseMenu_Turn_Left/), menuRight: _getSoundFiles(/PauseMenu_Turn_Right/), menuReady: _getSoundFiles(/ff7_cursor_ready/), + menuBeep: _getSoundFiles(/beep/), + menuBoop: _getSoundFiles(/boop/), itemEquip: _getSoundFiles(/...
0
diff --git a/includes/Modules/Analytics/Plugin_Detector.php b/includes/Modules/Analytics/Plugin_Detector.php @@ -39,6 +39,7 @@ class Plugin_Detector { * @return array */ public function get_active_plugins() { + $active_plugins = array(); foreach ( $this->supported_plugins as $key => $function_name ) { if ( defined( $fu...
1
diff --git a/assets/js/modules/analytics/datastore/tags.js b/assets/js/modules/analytics/datastore/tags.js @@ -76,7 +76,7 @@ const fetchGetTagPermissionStore = createFetchStore( { // Actions const WAIT_FOR_EXISTING_TAG = 'WAIT_FOR_EXISTING_TAG'; -const WAIT_FOR_EXISTING_TAG_PERMISSION = 'WAIT_FOR_EXISTING_TAG_PERMISSIO...
10
diff --git a/lib/exposes.js b/lib/exposes.js class Base { withEndpoint(endpointName) { this.endpoint = endpointName; + this.property = `${this.name}_${this.endpoint}`; return this; } } -// class Action extends Base { -// constructor(values) { -// super(); -// this.type = 'action'; -// this.values = values; -// } -// } ...
14
diff --git a/dev/logger.js b/dev/logger.js @@ -75,13 +75,14 @@ function createBroker(options) { console.log(chalk.yellow.bold("\n--- WINSTON ---")); const winston = require("winston"); const broker = createBroker({ - logger: bindings => extend(new winston.Logger({ + logger: bindings => extend(winston.createLogger({ + f...
3
diff --git a/avatars/vrarmik/ShoulderPoser.js b/avatars/vrarmik/ShoulderPoser.js @@ -75,7 +75,7 @@ class ShoulderPoser { .magnitude); } */ - Update() { + Update(leftArmIk, rightArmIk) { this.shoulder.proneFactor = this.getProneFactor(); this.shoulder.prone = this.shoulder.proneFactor > 0; if (this.shoulder.prone) { @@ ...
0
diff --git a/engine/core/src/main/resources/view/core/Drawer.js b/engine/core/src/main/resources/view/core/Drawer.js @@ -702,7 +702,7 @@ export class Drawer { loader.add('avatar' + index, agent.avatar, {loadType: 2, crossOrigin: true}, function (event) { agentData.avatar = event.texture - PIXI.Texture.addTextureToCache...
1
diff --git a/shared/js/background/banner.es6.js b/shared/js/background/banner.es6.js @@ -114,7 +114,7 @@ function handleOnCommitted (details) { const { url } = details let pixelOps = { bc: 0, - d: experiment.getDaysSinceInstall() || -1 + d: experiment.getDaysSinceInstall() } let pixelID @@ -182,7 +182,7 @@ function fir...
2
diff --git a/assets/src/dashboard/app/api/useTemplateApi.js b/assets/src/dashboard/app/api/useTemplateApi.js @@ -96,7 +96,7 @@ const useTemplateApi = (dataAdapter, config) => { [fetchExternalTemplates] ); - const bookmarkTemplate = useCallback((templateId, shouldBookmark) => { + const bookmarkTemplateById = useCallback...
10
diff --git a/token-metadata/0x493c8d6a973246a7B26Aa8Ef4b1494867A825DE5/metadata.json b/token-metadata/0x493c8d6a973246a7B26Aa8Ef4b1494867A825DE5/metadata.json "symbol": "NLINK", "address": "0x493c8d6a973246a7B26Aa8Ef4b1494867A825DE5", "decimals": 3, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/common/deck_validation.js b/common/deck_validation.js @@ -4,6 +4,7 @@ const INSTRUCTIONS_MAX_LENGTH = 400; const IMAGE_QUESTION_MAX_LENGTH = 20; const TEXT_QUESTION_MAX_LENGTH = 400; const DESCRIPTION_MAX_LENGTH = 500; +const MAX_NEWLINES_IN_DESCRIPTION = 8; const ANSWERS_TOTAL_MAX_LENGTH = 200; const COMM...
9
diff --git a/src/core/config/scripts/newMinorVersion.mjs b/src/core/config/scripts/newMinorVersion.mjs @@ -136,7 +136,7 @@ const getFeature = function() { fs.writeFileSync(path.join(process.cwd(), "CHANGELOG.md"), changelogData); - console.log("Written CHANGELOG.md"); + console.log("Written CHANGELOG.md\nCommit changes...
3
diff --git a/README.md b/README.md @@ -45,7 +45,7 @@ Check the [getting started](https://github.com/ericmdantas/generator-ng-fullstac ### Wiki -In the wiki you'll find: [the sub-generators](https://github.com/ericmdantas/generator-ng-fullstack/wiki/Sub-Generators), [FAQ](https://github.com/ericmdantas/generator-ng-full...
0
diff --git a/tests/contract_interfaces/issuanceController_interface.py b/tests/contract_interfaces/issuanceController_interface.py @@ -37,7 +37,7 @@ class IssuanceControllerInterface(): self.contract.functions.exchangeEtherForNomins().transact({'from': sender, 'value': value}), "exchangeEtherForNomins", self.contract_n...
1
diff --git a/src/plots/gl3d/index.js b/src/plots/gl3d/index.js @@ -35,9 +35,6 @@ exports.layoutAttributes = require('./layout/layout_attributes'); exports.baseLayoutAttrOverrides = overrideAll({ hoverlabel: fxAttrs.hoverlabel - // dragmode needs docalc but only when transitioning TO lasso or select - // so for now it's...
2
diff --git a/js/src/miscellaneous/resolve.js b/js/src/miscellaneous/resolve.js @@ -97,7 +97,7 @@ module.exports = (createCommon, options) => { // Test resolve turns /ipns/QmPeerHash into /ipns/domain.com into /ipfs/QmHash it('should resolve IPNS link recursively', function (done) { - this.timeout(2 * 60 * 1000) + this....
1
diff --git a/framer/Extras/Preloader.coffee b/framer/Extras/Preloader.coffee @@ -37,10 +37,10 @@ class Preloader extends BaseClass @brand.style["background-image"] = "url('#{url}')" if @brand addImagesFromContext: (context) -> - _.pluck(context.layers, "image").map(@addImage) + _.map(context.layers, "image").map(@addIm...
4