code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/src/plots/cartesian/axes.js b/src/plots/cartesian/axes.js @@ -913,7 +913,7 @@ axes.calcTicks = function calcTicks(ax, opts) { var prevX = null; var x = x0; - var id; + var majorId; if(major) { // ids for ticklabelstep @@ -930,7 +930,7 @@ axes.calcTicks = function calcTicks(ax, opts) { } } - id = Math.round...
10
diff --git a/.github/workflows/php-tests.yml b/.github/workflows/php-tests.yml @@ -30,6 +30,7 @@ jobs: - uses: actions/checkout@v2 - uses: shivammathur/setup-php@v2 with: + extensions: mbstring, intl, redis, pdo_mysql php-version: ${{ matrix.php }} - name: Start MySQL run: sudo service mysql start @@ -45,7 +46,7 @@ job...
12
diff --git a/src/ns_rebalancer.erl b/src/ns_rebalancer.erl @@ -1335,8 +1335,7 @@ do_run_graceful_failover_moves(Node, BucketName, BucketConfig, I, N) -> check_graceful_failover_possible(Node, BucketsAll) -> case check_graceful_failover_possible_rec(Node, BucketsAll) of false -> false; - [] -> false; - [_|_] -> true + _...
11
diff --git a/js/views/modals/orderDetail/summaryTab/Summary.js b/js/views/modals/orderDetail/summaryTab/Summary.js @@ -179,6 +179,10 @@ export default class extends BaseVw { e.jsonData.notification.refund.orderId === this.model.id) { // A notification the buyer will get when the vendor has refunded their order. this.mo...
9
diff --git a/js/index.js b/js/index.js geoJSONPromise.then(function(response) { // Iterate on features in order to discard features without geometry var cleanedGeoJSONFeatures = []; - turf.featureEach(response, function(feature) { + turf.flattenEach(response, function(feature) { if (turf.getGeom(feature)) { var maybeBu...
9
diff --git a/.eslintrc b/.eslintrc "prettier/flowtype", "prettier/react" ], - "plugins": [ - "dependencies", - "flowtype", - "import", - "prettier", - "react", - "react-hooks" - ], + "plugins": ["dependencies", "flowtype", "import", "prettier", "react", "react-hooks"], "settings": { "react": { "pragma": "React", }, "im...
0
diff --git a/src/RunWrappers/DockerUtils.js b/src/RunWrappers/DockerUtils.js @@ -104,14 +104,19 @@ function checkRunning(port, host, next) { var net = require('net'); var socket = net.createConnection(port, host); var start = new Date(); - var timer; var finished; - socket.on('connect', function () { - timer = setTimeo...
7
diff --git a/src/core/Core.js b/src/core/Core.js @@ -87,7 +87,6 @@ class Uppy { this.upload = this.upload.bind(this) this.emitter = ee() - this.on = this.emitter.on.bind(this.emitter) this.off = this.emitter.off.bind(this.emitter) this.once = this.emitter.once.bind(this.emitter) this.emit = this.emitter.emit.bind(this....
0
diff --git a/config/initializers/error_notifier.rb b/config/initializers/error_notifier.rb @@ -7,7 +7,7 @@ Rollbar.configure do |config| # Avoid a loop between our logger (who sends errors through rollbar) # and rollbar itself when it cannot send an error to rollbar service - config.logger = Logger.new(STDERR) + config...
4
diff --git a/src/pages/devtools/themes/natsuiro/natsuiro.js b/src/pages/devtools/themes/natsuiro/natsuiro.js // this to reflect the change // storage + selectedFleet => selectedExpedition, plannerIsGreatSuccess function ExpedTabApplyConfig() { - const conf = ExpedTabValidateConfig(selectedExpedition); if(selectedFleet ...
1
diff --git a/src/components/general/world-objects-list/ComponentEditor.jsx b/src/components/general/world-objects-list/ComponentEditor.jsx @@ -132,6 +132,23 @@ export const ComponentEditor = () => { }; + const handleCheckboxChange = ( key, value ) => { + + console.log("change checkbox", key, value) + + for ( let i = 0;...
0
diff --git a/client/src/components/views/Armory/index.js b/client/src/components/views/Armory/index.js @@ -394,7 +394,8 @@ class Armory extends Component { <UncontrolledDropdown> <DropdownToggle block caret className="officer-selector"> {team - ? teams.find(t => t.id === team).name + ? teams.find(t => t.id === team) &&...
1
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,13 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master where X.Y.Z is the semver of most recent plotly.js release. +## [1.47.4] -- 2019-04-25 + +### Fixed +- Fix graphs with `sankey` and cartesian subplots [#3802] +- Fix selection of `bar` traces on subpl...
3
diff --git a/package.json b/package.json { "name": "prettier-atom", "main": "./dist/main.js", - "version": "0.35.1", + "version": "0.36.0", "description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration", - "keywords": ["atom", "javascript", "prettier", "prettier-eslint...
6
diff --git a/src/components/filter/filter.stories.js b/src/components/filter/filter.stories.js @@ -5,7 +5,7 @@ import OptionsHelper from '../../utils/helpers/options-helper'; import Filter from './filter'; import Textbox from '../textbox'; -storiesOf('Filter', module) +storiesOf('Filter Component', module) .addParamete...
10
diff --git a/app/features/selectable.js b/app/features/selectable.js @@ -79,7 +79,7 @@ export function Selectable(visbug) { if (!e.altKey) e.stopPropagation() if (!e.shiftKey) { - unselect_all(false) + unselect_all({silent:true}) clearMeasurements() } @@ -296,7 +296,7 @@ export function Selectable(visbug) { }, new Set(...
7
diff --git a/lib/g.js b/lib/g.js sketch_canvas.height = height(); events_canvas.height = height(); + background.width = width(); background.style.backgroundColor = backgroundColor; // INITIALIZE THE SKETCH CANVAS
1
diff --git a/packages/mjml-button/src/index.js b/packages/mjml-button/src/index.js import { BodyComponent } from 'mjml-core' +import widthParser from 'mjml-core/lib/helpers/widthParser' + export default class MjButton extends BodyComponent { static endingTag = true @@ -78,6 +80,7 @@ export default class MjButton extend...
7
diff --git a/src/webroutes/fxserver/controls.js b/src/webroutes/fxserver/controls.js @@ -27,10 +27,10 @@ module.exports = async function FXServerControls(ctx) { //TODO: delay override message logic should be on fxserver, but for now keep here // as it messages with the sync notification on the UI if (globals.fxRunner.r...
13
diff --git a/shared/js/background/safari-wrapper.es6.js b/shared/js/background/safari-wrapper.es6.js @@ -89,11 +89,6 @@ let getTabId = (e) => { } } -let reloadTab = () => { - var activeTab = safari.application.activeBrowserWindow.activeTab - activeTab.url = activeTab.url -} - let mergeSavedSettings = (settings, results...
2
diff --git a/README.md b/README.md @@ -75,10 +75,10 @@ Fluture is written as modular JavaScript. - Modern browsers can run Fluture directly. If you'd like to try this out, I recommend installing Fluture with [Pika][] or [Snowpack][]. You can also try the [bundled module](#bundled-from-a-cdn) to avoid a package manager....
7
diff --git a/src/compiler/nodes.imba1 b/src/compiler/nodes.imba1 @@ -2977,7 +2977,7 @@ export class Func < Code var name = typeof @name == 'string' ? @name : @name.c name = name ? ' ' + name.replace(/\./g,'_') : '' var keyword = o and o:keyword != undefined ? o:keyword : funcKeyword - var out = "{M(keyword,option(:def)...
7
diff --git a/packages/spark-extras/components/highlight-board/highlight-board.js b/packages/spark-extras/components/highlight-board/highlight-board.js -import objectFitImages from './node_modules/object-fit-images/dist/ofi.es-modules'; +import objectFitImages from 'object-fit-images'; const highlightBoard = () => { obj...
1
diff --git a/content/intro-to-storybook/vue/pt/composite-component.md b/content/intro-to-storybook/vue/pt/composite-component.md @@ -253,10 +253,10 @@ it('renders pinned tasks at the start of the list', () => { const vm = new Constructor({ propsData: { tasks: withPinnedTasks }, }).$mount(); - const lastTaskInput = vm.$...
3
diff --git a/src/core/createLogger.js b/src/core/createLogger.js @@ -43,9 +43,5 @@ export default (console, getLogEnabled, prefix) => { * @param {...*} arg Any argument to be logged. */ error: process.bind(null, "error") - /** - * Creates a new logger with an additional prefix. - * @param {String} additionalPrefix - */...
2
diff --git a/src/agent/block_store_services/block_store_s3.js b/src/agent/block_store_services/block_store_s3.js @@ -292,6 +292,8 @@ class BlockStoreS3 extends BlockStoreBase { * to keep only the latest versions of the test block. */ async _delete_block_past_versions(block_md) { + // currently we use disable_metadata o...
1
diff --git a/README.md b/README.md @@ -70,6 +70,39 @@ ReactDOM.render( ### FormBuilder The FormBuilder class can be used to embed a form builder directly in your react application. Please note that you'll need to include the CSS for the form builder from formio.js as well. +```javascript +import { FormBuilder } from '@...
3
diff --git a/app/models/carto/visualization.rb b/app/models/carto/visualization.rb @@ -172,14 +172,6 @@ class Carto::Visualization < ActiveRecord::Base @stats ||= CartoDB::Visualization::Stats.new(self).to_poro end - def transition_options - @transition_options ||= (slide_transition_options.nil? ? {} : JSON.parse(slide...
2
diff --git a/test/specs/config/fallbackToNetwork.test.js b/test/specs/config/fallbackToNetwork.test.js @@ -13,9 +13,11 @@ describe('fallbackToNetwork', () => { }); it('not error when configured globally', async () => { + theGlobal.fetch = async () => ({ status: 202 }); fm.config.fallbackToNetwork = true; fm.mock('http:...
1
diff --git a/src/components/button/template.njk b/src/components/button/template.njk {# Determine type of element to use, if not explicitly set -#} {% if params.element %} - {% set element = params.element %} + {% set element = params.element | lower %} {% else %} {% if params.href %} {% set element = 'a' %}
8
diff --git a/test/unit/specs/store/governance/proposals.spec.js b/test/unit/specs/store/governance/proposals.spec.js @@ -71,11 +71,6 @@ describe(`Module: Proposals`, () => { [`setProposal`, proposals[0]], [`setProposal`, proposals[1]] ]) - expect(dispatch.mock.calls).toEqual([ - [`getProposalVotes`, Number(proposals[0]...
3
diff --git a/test/jasmine/tests/config_test.js b/test/jasmine/tests/config_test.js @@ -47,7 +47,12 @@ describe('config argument', function() { width: layoutWidth }; var relayout = { - width: relayoutWidth + width: relayoutWidth, + // didn't need this before #3120 - but since we're now + // implicitly clearing autosize ...
3
diff --git a/articles/universal-login/i18n.md b/articles/universal-login/i18n.md @@ -30,19 +30,14 @@ The New Universal Login Experience is currently localized to the languages above The language to render the pages will be selected based on: - The languages supported by Auth0, listed above. -- The list of languages con...
2
diff --git a/src/js/dex/asset.picker.component.js b/src/js/dex/asset.picker.component.js autocompleteElement = $element.find('md-autocomplete'); ctrl.isAssetLoading = false; + ctrl.isPickingInProgress = false; ctrl.autocomplete = autocomplete.create(); ctrl.$onChanges = function () { if (ctrl.assets && ctrl.pickedAsset...
1
diff --git a/learn/getting_started/installation.md b/learn/getting_started/installation.md @@ -35,7 +35,7 @@ meilisearch ::: ::: tab Docker -Using **Docker** you can choose to run [any available tags](https://hub.docker.com/r/getmeili/meilisearch/tags). +Using **Docker** you can choose to run [any available tag](https:...
7
diff --git a/accessibility-checker-engine/src/v4/rules/WCAG21_Input_Autocomplete.ts b/accessibility-checker-engine/src/v4/rules/WCAG21_Input_Autocomplete.ts @@ -23,14 +23,16 @@ export let WCAG21_Input_Autocomplete: Rule = { "en-US": { "group": "WCAG21_Input_Autocomplete.html", "Pass_0": "WCAG21_Input_Autocomplete.html"...
3
diff --git a/tests/integration/docker/layers/dockerLayers.test.js b/tests/integration/docker/layers/dockerLayers.test.js @@ -3,7 +3,7 @@ import fetch from 'node-fetch' import rimraf from 'rimraf' import { joinUrl, setup, teardown } from '../../_testHelpers/index.js' -jest.setTimeout(120000) +jest.setTimeout(180000) // ...
3
diff --git a/lib/plugin/git/Git.js b/lib/plugin/git/Git.js @@ -89,7 +89,7 @@ class Git extends GitBase { } isWorkingDirClean() { - return this.exec('git diff-index --quiet HEAD --', { options }).then( + return this.exec('git diff --quiet HEAD', { options }).then( () => true, () => false );
7
diff --git a/core/field_textinput.js b/core/field_textinput.js @@ -237,12 +237,12 @@ Blockly.FieldTextInput.prototype.doValueUpdate_ = function(newValue) { */ Blockly.FieldTextInput.prototype.applyColour = function() { if (this.sourceBlock_ && this.constants_.FULL_BLOCK_FIELDS) { - if (this.sourceBlock_.isShadow()) { -...
1
diff --git a/edit.js b/edit.js @@ -13,8 +13,8 @@ import {makePromise} from './util.js'; import {world} from './world.js'; import * as universe from './universe.js'; // import {Bot} from './bot.js'; -import {storageHost} from './constants.js'; // import {GuardianMesh} from './land.js'; +// import {storageHost} from './c...
2
diff --git a/aura-impl/src/main/java/org/auraframework/impl/root/DependencyDefImpl.java b/aura-impl/src/main/java/org/auraframework/impl/root/DependencyDefImpl.java @@ -48,6 +48,7 @@ public final class DependencyDefImpl extends DefinitionImpl<DependencyDef> imple .add(DefType.EVENT) .add(DefType.INTERFACE) .add(DefType...
11
diff --git a/docs/source/docs/text-color.blade.md b/docs/source/docs/text-color.blade.md @@ -30,7 +30,7 @@ title: "Text Color" <tr> <td class="p-2 border-t border-smoke font-mono text-xs text-purple-dark whitespace-no-wrap">.text-{{ $name }}</td> <td class="p-2 border-t border-smoke font-mono text-xs text-blue-dark whi...
7
diff --git a/src/pages/strategy/tabs/shipdrop/shipdrop.js b/src/pages/strategy/tabs/shipdrop/shipdrop.js KC3StrategyTabs.shipdrop.definition = { tabSelf: KC3StrategyTabs.shipdrop, - pList : [], dropTable : {}, selectedWorld : 0, selectedMap : 0, let sorties37_1; sorties37_1 = KC3Database.con.sortie.where("world").equal...
1
diff --git a/src/io_frida.c b/src/io_frida.c @@ -884,6 +884,23 @@ static void on_detached(FridaSession *session, FridaSessionDetachReason reason, const char *crash_report = frida_crash_get_report (crash); eprintf ("CrashReport: %s\n", crash_report); } + switch (reason) { + case FRIDA_SESSION_DETACH_REASON_APPLICATION_R...
9
diff --git a/components/app/pulse/LayerCard.js b/components/app/pulse/LayerCard.js @@ -109,9 +109,12 @@ class LayerCard extends React.Component { return ( <div className={className}> <h3>{layerActive && layerActive.attributes.name}</h3> - <div className="description"> - {layerActive && layerActive.attributes.descriptio...
12
diff --git a/app/addons/documents/index-results/containers/ApiBarContainer.js b/app/addons/documents/index-results/containers/ApiBarContainer.js @@ -17,30 +17,17 @@ import { ApiBarWrapper } from '../../../components/layouts'; import { getQueryOptionsParams } from '../reducers'; import FauxtonAPI from '../../../../core/...
2
diff --git a/src/logic/uimodel.js b/src/logic/uimodel.js @@ -52,6 +52,7 @@ class UIModel filter(value => value.event !== undefined), map(value => value.event.msg), map(msg => msg.target.value ), + startWith("#303542"), map(hex => { var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex); return result ? [
12
diff --git a/helpers/wrapper/contracts/Wrapper.sol b/helpers/wrapper/contracts/Wrapper.sol @@ -89,11 +89,8 @@ contract Wrapper { // Wrap (deposit) the ether. wethContract.deposit.value(msg.value)(); - // Check if Swap has allowance, if not approve Swap to trade it. - if (wethContract.allowance(address(this), address(sw...
2
diff --git a/lib/connection.js b/lib/connection.js @@ -420,7 +420,7 @@ function _wrapConnHelper(fn) { Array.prototype.slice.call(arguments, 0, arguments.length - 1) : Array.prototype.slice.call(arguments); return utils.promiseOrCallback(cb, cb => { - if (this.readyState !== STATES.connected) { + if (this.readyState ===...
1
diff --git a/api/plex/libraryUpdate.js b/api/plex/libraryUpdate.js @@ -14,6 +14,7 @@ const processRequest = require("../requests/process"); const logger = require("../util/logger"); const Discord = require("../notifications/discord"); const { showLookup } = require("../tmdb/show"); +const bcrypt = require("bcryptjs"); ...
1
diff --git a/includes/Modules/Idea_Hub.php b/includes/Modules/Idea_Hub.php @@ -1039,8 +1039,12 @@ final class Idea_Hub extends Module * @param string $type Activity type. */ private function track_idea_activity( $post_id, $type ) { - $post = get_post( $post_id ); + $service = $this->get_service( 'ideahub' ); + if ( ! p...
7
diff --git a/app/assets/stylesheets/camaleon_cms/admin/uploader/_uploadfile.css.scss b/app/assets/stylesheets/camaleon_cms/admin/uploader/_uploadfile.css.scss padding: 5px 5px 5px 15px } +.ajax-file-upload-filename { + overflow: auto; + max-width: 100%; +} + .ajax-file-upload-filesize { width: 50px; height: auto; @@ -2...
7
diff --git a/app/src/renderer/vuex/modules/user.js b/app/src/renderer/vuex/modules/user.js @@ -88,10 +88,11 @@ export default ({ commit, node }) => { async signIn ({ state, dispatch }, { password, account }) { state.password = password state.account = account - state.address = state.accounts.find(_account => _account.n...
12
diff --git a/backend/new.js b/backend/new.js @@ -982,7 +982,17 @@ function mergeDocChangeOps(patches, newBlock, outCols, changeState, docState, li let nextOp = changeState.nextOp while (!changeState.done && nextOp[idActorIdx] === idActorIndex && nextOp[insertIdx] === insert && nextOp[objActorIdx] === firstOp[objActorId...
9
diff --git a/pages/release notes/TypeScript 3.7.md b/pages/release notes/TypeScript 3.7.md * [Uncalled Function Checks](#uncalled-function-checks) * [`// @ts-nocheck` in TypeScript Files](#ts-nocheck-in-typescript-files) * [Semicolon Formatter Option](#semicolon-formatter-option) -* [Breaking Changes](#breaking-Changes...
1
diff --git a/src/serverlessLog.js b/src/serverlessLog.js @@ -6,7 +6,20 @@ const { max } = Math const blue = chalk.keyword('dodgerblue') const grey = chalk.keyword('grey') const lime = chalk.keyword('lime') +const orange = chalk.keyword('orange') +const peachpuff = chalk.keyword('peachpuff') +const plum = chalk.keyword(...
0
diff --git a/src/components/general/character/Character.jsx b/src/components/general/character/Character.jsx @@ -183,6 +183,10 @@ export const Character = ({ game, /* wearActions,*/ dioramaCanvasRef }) => { game.playerDiorama.toggleShader(); + const soundFiles = sounds.getSoundFiles(); + const audioSpec = soundFiles.me...
0
diff --git a/styles/simple.css b/styles/simple.css @@ -2244,7 +2244,7 @@ body { .roll-result .roll-value, .roll-result .roll-detail { - font-family: "Font Awesome 5 Free", Verdana, sans-serif; + font-family: "Font Awesome 5 Free", 'Roboto', sans-serif; } /* GURPS App CSS */
1
diff --git a/frontend/src/app/components/application/main-layout/main-layout.js b/frontend/src/app/components/application/main-layout/main-layout.js @@ -45,8 +45,7 @@ const navItems = deepFreeze([ name: 'cluster', route: routes.cluster, icon: 'cluster', - label: 'Cluster', - beta: true + label: 'Cluster' }, { name: 'ma...
2
diff --git a/test/jasmine/tests/cartesian_interact_test.js b/test/jasmine/tests/cartesian_interact_test.js @@ -973,7 +973,7 @@ describe('axis zoom/pan and main plot zoom', function() { var yr0 = [-0.211, 3.211]; var specs = [{ - desc: 'zoombox on xy', + desc: '@flaky zoombox on xy', drag: ['xy', 'nsew', 30, 30], exp: [...
0
diff --git a/test/SSE_HTTP1_server.js b/test/SSE_HTTP1_server.js @@ -25,7 +25,7 @@ const sendStream = () => { const dispatchStreamOrHeaders = (req, res, next) => { if (req.headers.accept === 'text/event-stream') { - setTimeout(go, timeInterval); + setTimeout(sendStream, timeInterval); return next(); }
1
diff --git a/packages/2018-neighborhood-development/src/components/ClassSizeAndQuality/index.js b/packages/2018-neighborhood-development/src/components/ClassSizeAndQuality/index.js @@ -73,6 +73,7 @@ export class ClassSizeAndQuality extends React.Component { <Scatterplot data={selectedYearData} dataKey="teacherExperienc...
3
diff --git a/articles/connector/install-other-platforms.md b/articles/connector/install-other-platforms.md @@ -55,6 +55,21 @@ For most platforms, you will need to run the required commands with root privile 6. Once the Connector is running, you will need to daemonize the Connector (if you don't already have a tool sele...
0
diff --git a/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/explorerpreviewcontent/template.vue b/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/explorerpreviewcontent/template.vue } const newName = prompt(`new name for "${nodeName}"`) if (newName) { + const that = this; $perAdmi...
10
diff --git a/src/App/RightColumn/DirectMessagesContainer/DirectMessageThread/header.js b/src/App/RightColumn/DirectMessagesContainer/DirectMessageThread/header.js @@ -38,8 +38,9 @@ export const Header = ({ users }: Object) => { <Names>{names}</Names> <Username> {username && `@${username}`} - {isAdmin && <Badge type="ad...
9
diff --git a/js/unix_formatting.js b/js/unix_formatting.js } })(function($) { /* eslint-disable */ + /* istanbul ignore next */ function warn(str) { if ('warn' in console) { console.warn(str); // node-ansiparser // The MIT License (MIT) // Copyright (c) 2014 Joerg Breitbart + /* istanbul ignore next */ var AnsiParser =...
8
diff --git a/token-metadata/0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf/metadata.json b/token-metadata/0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf/metadata.json "symbol": "GEN", "address": "0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/CHANGELOG.md b/CHANGELOG.md All notable changes to this project are documented in this file. -## Head +## 13.4.1 - Fixed: `time-min-milliseconds` TypeError for `ignore: ["delay"]` and shorthand animation ([#4783](https://github.com/stylelint/stylelint/pull/4783)).
6
diff --git a/src/plugins/meteor/prepare-bundle.js b/src/plugins/meteor/prepare-bundle.js import { getImagePrefix, + getNodeVersion, runCommand } from './utils'; import fs from 'fs'; @@ -57,6 +58,7 @@ export async function prepareBundleLocally( throw error; } + const nodeVersion = getNodeVersion(api, buildLocation); con...
12
diff --git a/framer/SVGBaseLayer.coffee b/framer/SVGBaseLayer.coffee @@ -82,18 +82,36 @@ class exports.SVGBaseLayer extends Layer delete options.parent delete options.element + pathProperties = ["fill", "stroke", "stroke-width", "stroke-linecap", "stroke-linejoin", "stroke-miterlimit", "stroke-opacity", "stroke-dasharr...
12
diff --git a/pages/index.js b/pages/index.js @@ -91,11 +91,12 @@ const FeatureBoxTitle = styled(Text)` export default class LandingPage extends React.Component { static async getInitialProps () { - // XXX fetch this from the API + const client = axios.create({baseURL: process.env.MEASUREMENTS_URL}) // eslint-disable-li...
4
diff --git a/examples/search_repos/search_options.js b/examples/search_repos/search_options.js @@ -119,8 +119,8 @@ var options_pubmed = { , {id: "clinical trial, phase ii", text: "Clinical Trial, Phase II", selected: true} , {id: "clinical trial, phase iii", text: "Clinical Trial, Phase III", selected: true} , {id: "cl...
3
diff --git a/gears/carto_gears_api/Gemfile.lock b/gears/carto_gears_api/Gemfile.lock @@ -3,43 +3,43 @@ PATH specs: carto_gears_api (0.0.6) pg (= 0.20.0) - rails (= 4.2.11) + rails (= 4.2.11.3) sprockets (= 3.7.2) values (= 1.8.0) GEM remote: https://rubygems.org/ specs: - actionmailer (4.2.11) - actionpack (= 4.2.11) -...
3
diff --git a/.github/workflows/test_windows.yml b/.github/workflows/test_windows.yml -on: - schedule: - - cron: '12 5 * * *' - +on: [ push ] jobs: windows_test: @@ -13,7 +10,8 @@ jobs: steps: - name: Environment Setup run: | - cp /c/hostedtoolcache/windows/Python/3.7.7/x64/python.exe /c/hostedtoolcache/windows/Python/3...
3
diff --git a/src/widgets/time-series/torque-histogram-view.js b/src/widgets/time-series/torque-histogram-view.js @@ -9,7 +9,6 @@ var TorqueControlsView = require('./torque-controls-view'); */ module.exports = HistogramView.extend({ className: 'CDB-Widget-content CDB-Widget-content--timeSeries u-flex u-alignCenter', - _...
2
diff --git a/src/pages/home/report/ReportActionItem.js b/src/pages/home/report/ReportActionItem.js @@ -170,6 +170,10 @@ class ReportActionItem extends Component { } render() { + // Ignore closed action here since we're already displaying a footer that explains why the report was closed + if (this.props.action.actionNam...
8
diff --git a/src/legacy/button.js b/src/legacy/button.js @@ -72,10 +72,10 @@ function renderButton(id, { container, locale, type, color, shape, size }) : Zal if (isElementVisible(el) && tagContent && tagContent.innerText && tagContent.innerText.trim() && tagContent.innerText.trim() === 'The safer, easier way to pay') {...
12
diff --git a/website/javascript/templates/UserProfile.vue b/website/javascript/templates/UserProfile.vue </button> </div> <div class="share-socials"> - <a onclick="FB.ui({method: 'share',href: 'https://developers.facebook.com/docs/',}, function(response){});return true;" target="_blank"><i class="fa fa-facebook-officia...
1
diff --git a/includes/Core/Assets/Assets.php b/includes/Core/Assets/Assets.php @@ -84,18 +84,14 @@ final class Assets { $scripts_print_callback = function() { $scripts = wp_scripts(); - $queue = $scripts->queue; - - $this->run_before_print_callbacks( $scripts, $queue ); + $this->run_before_print_callbacks( $scripts, $s...
7
diff --git a/articles/rules/current/index.md b/articles/rules/current/index.md @@ -4,9 +4,7 @@ toc: true --- # Rules -**Rules** are functions written in JavaScript that are executed in Auth0 as part of the transaction every time a user authenticates to your application. They are executed after the authentication and be...
3
diff --git a/packages/node_modules/@node-red/nodes/core/network/05-tls.js b/packages/node_modules/@node-red/nodes/core/network/05-tls.js @@ -27,7 +27,7 @@ module.exports = function(RED) { var caPath = n.ca.trim(); this.servername = (n.servername||"").trim(); - if ((certPath.length > 0) || (keyPath.length > 0)) { + if (...
11
diff --git a/includes/Modules/Tag_Manager.php b/includes/Modules/Tag_Manager.php namespace Google\Site_Kit\Modules; use Google\Site_Kit\Context; -use Google\Site_Kit\Core\Authentication\Profile; use Google\Site_Kit\Core\Modules\Module; use Google\Site_Kit\Core\Modules\Module_Settings; use Google\Site_Kit\Core\Modules\M...
2
diff --git a/src/DevChatter.Bot/FakeData.cs b/src/DevChatter.Bot/FakeData.cs @@ -15,7 +15,7 @@ public FakeData(IRepository repository) _repository = repository; } - private static List<IntervalTriggeredMessage> GetIAutomatedMessage() + private static List<IntervalTriggeredMessage> GetIntervalTriggeredMessages() { var a...
1
diff --git a/packages/fela-dom/src/dom/rehydration/rehydrateRules.js b/packages/fela-dom/src/dom/rehydration/rehydrateRules.js @@ -3,7 +3,7 @@ import camelCaseProperty from 'css-in-js-utils/lib/camelCaseProperty' import { generateCSSSelector, RULE_TYPE } from 'fela-utils' -const DECL_REGEX = /[.]([0-9a-z_-]+)([^{]*)?{(...
4
diff --git a/client/homebrew/pages/editPage/editPage.jsx b/client/homebrew/pages/editPage/editPage.jsx @@ -322,7 +322,7 @@ const EditPage = createClass({ <div className='errorContainer'> Looks like there was a problem saving. <br /> Report the issue <a target='_blank' rel='noopener noreferrer' - href={`https://github.c...
12
diff --git a/test/browser/spec.js b/test/browser/spec.js @@ -23,7 +23,6 @@ describe('Component spec', () => { constructor(props, context) { super(props, context); expect(props).to.be.deep.equal({ - children: EMPTY_CHILDREN, fieldA: 1, fieldB: 2, fieldC: 1, fieldD: 2 });
1
diff --git a/android/rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLOfflineModule.java b/android/rctmgl/src/main/java/com/mapbox/rctmgl/modules/RCTMGLOfflineModule.java @@ -320,11 +320,6 @@ public class RCTMGLOfflineModule extends ReactContextBaseJavaModule { @Override public void onStatusChanged(OfflineRegionSta...
2
diff --git a/index.js b/index.js @@ -11,7 +11,14 @@ app.use((req, res, next) => { res.set('Access-Control-Allow-Origin', '*'); next(); }); -app.use(express.static(__dirname)); +const appStatic = express.static(__dirname); +app.use(appStatic); +app.get('*', (req, res, next) => { + req.url = '404.html'; + res.set('Conten...
0
diff --git a/articles/connections/passwordless/guides/embedded-login.md b/articles/connections/passwordless/guides/embedded-login.md @@ -9,10 +9,20 @@ topics: --- # Passwordless Authentication with Embedded Login -If you have strong reasons to not to use [Universal Login](/connections/passwordless/guides/universal-logi...
7
diff --git a/server/preprocessing/other-scripts/test/params_pubmed.json b/server/preprocessing/other-scripts/test/params_pubmed.json -{"article_types":["autobiography","bibliography","biography","book illustrations","case reports","classical article","clinical conference","clinical study","clinical trial","clinical tri...
3
diff --git a/utilities/warning/url-exists.js b/utilities/warning/url-exists.js @@ -13,21 +13,9 @@ if (process.env.NODE_ENV !== 'production') { const hasWarned = {}; let hasExecuted; - // Using XMLHttpRequest can cause problems in non-browser environments. This should be completely removed in production environment and ...
4
diff --git a/deployment/deploy.sh b/deployment/deploy.sh @@ -84,9 +84,9 @@ EOF git commit -am "Pushing release $VERSION [ci skip]" echo -en "${GREEN}Pushing to S3: branch-cdn ...${NC}\n" - aws s3 cp --content-type="text/javascript" --content-encoding="gzip" dist/build.min.js.gz s3://branch-cdn/branch-$VERSION.min.js --...
3
diff --git a/package.json b/package.json "test:size": "bundlesize", "test:prepush": "npm run build && npm run test:unit && npm run test:size", "browser-coverage": "npm run test:cover && opener coverage/lcov-report/index.html", - "prePublishOnly": "npm run build", + "prepublishOnly": "npm run build", "postpublish": "npm...
1
diff --git a/io-manager.js b/io-manager.js @@ -34,6 +34,7 @@ ioManager.lastMenuExpanded = false; ioManager.currentWeaponGrabs = [false, false]; ioManager.lastWeaponGrabs = [false, false]; ioManager.currentWalked = false; +ioManager.lastCtrlKey = false; ioManager.keys = { up: false, down: false, @@ -182,6 +183,11 @@ con...
0
diff --git a/src/traces/table/plot.js b/src/traces/table/plot.js @@ -147,7 +147,7 @@ module.exports = function plot(gd, wrappedTraceHolders) { columnBlock .style('cursor', function(d) { - return d.dragHandle ? 'ew-resize' : 'auto'; + return d.dragHandle ? 'ew-resize' : d.calcdata.scrollbarState.barWiggleRoom ? 'ns-resi...
11
diff --git a/test/integration/behaviors/short.behavior.js b/test/integration/behaviors/short.behavior.js @@ -5,10 +5,7 @@ const { } = ethers; const { approveIfNeeded } = require('../utils/approve'); const { assert } = require('../../contracts/common'); -const { - toBytes32, - constants: { ZERO_BYTES32 }, -} = require('...
2
diff --git a/packages/component-library/stories/ScatterPlotMap.story.js b/packages/component-library/stories/ScatterPlotMap.story.js @@ -50,10 +50,10 @@ const lineWidthOptions = { const getPosition = f => f.geometry ? f.geometry.coordinates : [-124.664355, 45.615779]; -const getFillColorStandard = f => +const getFillCo...
10
diff --git a/js/modules/makeConnectivityMatrixFile.js b/js/modules/makeConnectivityMatrixFile.js @@ -27,8 +27,8 @@ const path = bis_genericio.getpathmodule(); class MakeConnMatrixFileModule extends BaseModule { constructor() { super(); - this.name = 'linearRegistration'; - this.useworker=true; + this.name = 'makeConnMa...
1
diff --git a/src/content/en/_index.yaml b/src/content/en/_index.yaml @@ -15,7 +15,7 @@ landing_page: - description: > <p> The average user visits more than 100 websites on their mobile - device every month, and expectations for speed and quality higher + device every month, and expectations for speed and quality are hi...
1
diff --git a/stubs/defaultConfig.stub.js b/stubs/defaultConfig.stub.js @@ -115,7 +115,6 @@ module.exports = { auto: 'auto', square: '1 / 1', video: '16 / 9', - attrs: 'attr(width) / attr(height)' }, backdropBlur: ({ theme }) => theme('blur'), backdropBrightness: ({ theme }) => theme('brightness'),
2