code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/docs/content/intro/StepByStep.js b/docs/content/intro/StepByStep.js @@ -64,7 +64,7 @@ export const StepByStep = <cx> follow the recommended Cx source layout) and it will create an initial `project.json` file for our application. - Next, we need to install prerequisite packages, by running `npm install` com...
3
diff --git a/README.md b/README.md @@ -64,9 +64,9 @@ You can use as many operations as you like in simple or complex ways. Some examp - Highlighting - When you highlight text in the input or output, the offset and length values will be displayed and, if possible, the corresponding data will be highlighted in the output...
3
diff --git a/src/basic_crawler.js b/src/basic_crawler.js @@ -260,7 +260,21 @@ class BasicCrawler { await source.markRequestHandled(request); this.handledRequestsCount++; } catch (err) { + try { + // TODO Errors thrown from within the error handler will in most cases terminate + // the crawler because runTaskFunction er...
7
diff --git a/utils/helper.js b/utils/helper.js @@ -5,6 +5,12 @@ var crypto = require('crypto'); module.exports = function (config_filename, logger) { var helper = {}; + + // default config file name + if (!config_filename) { + config_filename = "marbles1.json"; + } + var config_path = path.join(__dirname, '../config/' ...
4
diff --git a/lib/node_modules/@stdlib/error/tools/database/test/test.js b/lib/node_modules/@stdlib/error/tools/database/test/test.js // MODULES // var tape = require( 'tape' ); +var objectKeys = require( '@stdlib/utils/keys' ); var isPlainObject = require( '@stdlib/assert/is-plain-object' ); -var image = require( './.....
10
diff --git a/src/lib/sharedUtils.js b/src/lib/sharedUtils.js @@ -64,6 +64,7 @@ let locale = require(`date-fns/locale/${(process.env.LOCALE || 'en_US').replace( )}`); // Svelte fix: babel interprets default automatically, but svelte doesn't. +/* istanbul ignore next */ locale = locale.default ? locale.default : locale; ...
8
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -123,13 +123,14 @@ class App extends THREE.Object3D { use: true, }); } - hit(damage) { + /* hit(damage) { + console.log('hit', new Error().stack); this.dispatchEvent({ type: 'hit', hp: 100, totalHp: 100, }); - } + } */ willDieFrom(damage) { return false; }
2
diff --git a/requirements.txt b/requirements.txt asn1crypto==0.24.0 astroid==1.6.0 certifi==2018.1.18 -cffi==1.11.5 +cffi==1.14.2 chardet==3.0.4 coverage==4.5.1 cryptography==2.5 @@ -24,7 +24,7 @@ lazy-object-proxy==1.3.1 mccabe==0.6.1 packaging==16.8 Paste==2.0.3 -psycopg2==2.7.3.2 +psycopg2==2.8.6 pycodestyle==2.3.1 ...
3
diff --git a/learn/configuration/settings.md b/learn/configuration/settings.md @@ -12,7 +12,7 @@ This page describes the **index-level settings** available in Meilisearch and ho | **[sortableAttributes](/learn/configuration/settings.md#sortable-attributes)** | [Strings] | Attributes to use when [sorting](/learn/advance...
7
diff --git a/site/man/rabbitmqctl.8.html b/site/man/rabbitmqctl.8.html </tr> </table> <h2 class="Sh" title="Sh" id="DESCRIPTION"><a class="selflink" href="#DESCRIPTION">DESCRIPTION</a></h2> -RabbitMQ is an implementation of AMQP, the emerging standard for high - performance enterprise messaging. The RabbitMQ Server is ...
4
diff --git a/tests/js/jest.config.js b/tests/js/jest.config.js @@ -43,11 +43,6 @@ module.exports = { moduleNameMapper: { // New (JSR) modules. '^googlesitekit-(.+)$': '<rootDir>assets/js/googlesitekit-$1', - // Old aliases. - '^SiteKitCore/(.*)$': '<rootDir>assets/js/$1', - '^GoogleComponents/(.*)$': '<rootDir>assets/j...
2
diff --git a/views/components/settings/assets/settings.css b/views/components/settings/assets/settings.css flex-wrap: wrap; } #SettingsView #poi-others .desc-buttons > button { + margin-top: .25ex; + margin-bottom: .25ex; margin-right: 1em; } #SettingsView #poi-others .contributors {
14
diff --git a/app/src/scripts/nav/navbar.navmenu.jsx b/app/src/scripts/nav/navbar.navmenu.jsx @@ -84,7 +84,7 @@ const NavMenu = ({ profile, scitran, isLoggedIn, loading }) => { NavMenu.propTypes = { profile: PropTypes.object, scitran: PropTypes.object, - isLoggedIn: PropTypes.object, + isLoggedIn: PropTypes.oneOfType([P...
1
diff --git a/packages/app/src/components/Page.tsx b/packages/app/src/components/Page.tsx @@ -10,6 +10,7 @@ import dynamic from 'next/dynamic'; import { HtmlElementNode } from 'rehype-toc'; +import { toastSuccess, toastError } from '~/client/util/apiNotification'; import { getOptionsToSave } from '~/client/util/editor';...
14
diff --git a/common/lib/types/stats.ts b/common/lib/types/stats.ts @@ -233,7 +233,7 @@ class PushStats { constructor(values?: PushValues) { this.messages = (values && values.messages) || 0; - let notifications = values && values.notifications; + const notifications = values && values.notifications; this.notifications =...
7
diff --git a/lib/build/files/webpack_files.js b/lib/build/files/webpack_files.js @@ -132,16 +132,27 @@ var files = { account: { page: 'account', stylesheets: [ - '/stylesheets/common_new.css', - '/stylesheets/header.css' + '/stylesheets/common_new.css' ], scripts: [ '/javascripts/common.js', '/javascripts/common_vendor...
12
diff --git a/example/src/components/YoYo.js b/example/src/components/YoYo.js @@ -34,18 +34,19 @@ class YoYo extends React.Component { this.state = { zoomLevel: 12, }; - - this.onUpdateZoomLevel = this.onUpdateZoomLevel.bind(this); } componentDidMount () { - this.map.zoomTo(this.state.zoomLevel, 8000); + this.cameraLoop...
3
diff --git a/engine/modules/entities/src/main/java/com/codingame/gameengine/module/entities/BitmapText.java b/engine/modules/entities/src/main/java/com/codingame/gameengine/module/entities/BitmapText.java package com.codingame.gameengine.module.entities; +import java.util.Objects; + /** * Represents a label on screen, ...
1
diff --git a/ui/component/uriIndicator/view.jsx b/ui/component/uriIndicator/view.jsx // @flow +import type { Node } from 'react'; import React from 'react'; import Button from 'component/button'; import Tooltip from 'component/common/tooltip'; @@ -14,6 +15,8 @@ type Props = { // Possibly because the resolve function is...
11
diff --git a/tests/phpunit/integration/Modules/Analytics_4Test.php b/tests/phpunit/integration/Modules/Analytics_4Test.php @@ -767,9 +767,9 @@ class Analytics_4Test extends TestCase { } ); - $analytics = $this->setup_report( true ); + $this->enable_shared_credentials(); - $data = $analytics->get_data( + $data = $this->...
14
diff --git a/token-metadata/0x83d60E7aED59c6829fb251229061a55F35432c4d/metadata.json b/token-metadata/0x83d60E7aED59c6829fb251229061a55F35432c4d/metadata.json "symbol": "INFT", "address": "0x83d60E7aED59c6829fb251229061a55F35432c4d", "decimals": 6, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/package-lock.json b/package-lock.json "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000861.tgz", "integrity": "sha512-aeEQ4kyd41qCl8XFbCjWgVBI3EOd66M9sC43MFn0kuD/vcrNqvoIAlKon4xdp8yMCYvVjdCltI3lgArj8I6cNA==" }, - "canvas": { - "version": "1.6.11", - "resolved": "https://registry...
2
diff --git a/src/parsers/GmlSeekData.hx b/src/parsers/GmlSeekData.hx @@ -110,13 +110,10 @@ class GmlSeekData { // comp: for (c in prev.compList) { - if (!next.compMap.exists(c.name)) GmlAPI.gmlComp.remove(c); + GmlAPI.gmlComp.remove(c); } for (c1 in next.compList) { - var c0 = prev.compMap[c1.name]; - if (c0 != null) {...
1
diff --git a/src/angular/src/app/spark-core-angular/directives/inputs/sprk-datepicker/sprk-datepicker.directive.ts b/src/angular/src/app/spark-core-angular/directives/inputs/sprk-datepicker/sprk-datepicker.directive.ts @@ -17,7 +17,7 @@ export class SprkDatepickerDirective implements OnInit { ngOnInit(): void { let inp...
3
diff --git a/ui/src/css/variables.styl b/ui/src/css/variables.styl @@ -474,12 +474,6 @@ $blue-grey-12 ?= #b0bec5 $blue-grey-13 ?= #78909c $blue-grey-14 ?= #455a64 -max(value1, value2) - if value1 <= value2 - value2 - else - value1 - $ios-statusbar-height ?= 20px $z-fab ?= 990 @@ -495,7 +489,7 @@ $z-max ?= 9998 $shadow-...
2
diff --git a/lib/request.js b/lib/request.js @@ -309,7 +309,7 @@ module.exports = { // 2xx or 304 as per rfc2616 14.26 if ((s >= 200 && s < 300) || 304 == s) { - return fresh(this.header, this.ctx.response.header); + return fresh(this.header, this.response.header); } return false;
4
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/subflow.js b/packages/node_modules/@node-red/editor-client/src/js/ui/subflow.js @@ -1048,7 +1048,7 @@ RED.subflow = (function() { } langs.forEach(function(l) { var row = $('<div>').appendTo(content); - $('<span>').css({display:"inline-block",width:"50...
1
diff --git a/server/game/cards/22-BtB/TheGreatPyramid.js b/server/game/cards/22-BtB/TheGreatPyramid.js const DrawCard = require('../../drawcard.js'); const GenericTracker = require('../../EventTrackers/GenericTracker'); +const GameActions = require('../../GameActions'); class TheGreatPyramid extends DrawCard { setupCar...
1
diff --git a/src/Navbar.js b/src/Navbar.js @@ -28,7 +28,8 @@ class Navbar extends Component { fixed, alignLinks, centerLogo, - search + search, + sidenav } = this.props; const brandClasses = cx({ @@ -74,6 +75,8 @@ class Navbar extends Component { navbar = <div className="navbar-fixed">{navbar}</div>; } + const sidenavL...
11
diff --git a/src/components/core/update/updateSlides.js b/src/components/core/update/updateSlides.js @@ -108,9 +108,13 @@ export default function () { if (params.slidesPerView === 'auto') { const slideStyles = window.getComputedStyle(slide[0], null); const currentTransform = slide[0].style.transform; + const currentWeb...
0
diff --git a/lib/plugins/input/aws-ecs.js b/lib/plugins/input/aws-ecs.js @@ -93,8 +93,10 @@ class AwsEcs { if (docs && docs.length > 0) { for (let i = 0; i < docs.length; i++) { const log = docs[i] - log['@timestamp'] = new Date(log.timestamp) - delete log.timestamp + log['@timestamp'] = new Date() + delete log.date + ...
10
diff --git a/token-metadata/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/metadata.json b/token-metadata/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/metadata.json "symbol": "PBTC", "address": "0x5228a22e72ccC52d415EcFd199F99D0665E7733b", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/src/components/CodeModal.js b/src/components/CodeModal.js @@ -74,15 +74,13 @@ const ModalCloseIcon = styled(Icon)` margin: 1rem; ` -const Overlay = ({ isActive }) => { - return ( +const Overlay = ({ isActive }) => ( <StyledOverlay initial={false} animate={{ opacity: isActive ? 1 : 0, zIndex: isActive ? 100...
7
diff --git a/src/index.js b/src/index.js @@ -3,7 +3,7 @@ const bs = require("browser-sync") const Output = require('./generators/output') const self = module.exports = { - render: async (html, options) => Output.toString(html, options).catch(err => console.error(err)), + render: async (html, options) => Output.toString...
2
diff --git a/src/browser/CordovaGoogleMaps.js b/src/browser/CordovaGoogleMaps.js - var utils = require('cordova/utils'); var PluginMap = require('cordova-plugin-googlemaps.PluginMap'), PluginMarker = require('cordova-plugin-googlemaps.PluginMarker'), @@ -22,11 +21,6 @@ document.addEventListener("load_googlemaps", funct...
4
diff --git a/lib/node_modules/@stdlib/repl/lib/process_line.js b/lib/node_modules/@stdlib/repl/lib/process_line.js @@ -38,6 +38,7 @@ var debug = logger( 'repl:line' ); var hasMultilineError = Parser.extend( multilinePlugin ).hasMultilineError; var RE_WHITESPACE = /^\s*$/; var RE_SINGLE_LINE_COMMENT = /^\s*\/\//; +var R...
9
diff --git a/src/components/nodes/task/shape.js b/src/components/nodes/task/shape.js @@ -18,7 +18,7 @@ export default joint.shapes.standard.Rectangle.extend({ type: 'processmaker.components.nodes.task.Shape', size: { width: 100, height: 60 }, attrs: { - 'image': { 'ref-x': 2, 'ref-y': 2, ref: 'rect', width: 16, height:...
5
diff --git a/server/preprocessing/other-scripts/openaire.R b/server/preprocessing/other-scripts/openaire.R @@ -32,28 +32,32 @@ get_papers <- function(query, params, limit=NULL) { project_id <- params$project_id funder <- params$funder - tryCatch({ + pubs_metadata <- tryCatch({ response <- roa_pubs(project_id = project_...
7
diff --git a/app/src/renderer/vuex/modules/themes.js b/app/src/renderer/vuex/modules/themes.js @@ -4,7 +4,7 @@ import dark from "../json/theme-dark.json" function setCssVars(theme) { const isWin = navigator.platform.toUpperCase().indexOf("WIN") >= 0 if (isWin) { - document.documentElement.style.setProperty(`--font-weig...
12
diff --git a/components/system/components/Buttons.js b/components/system/components/Buttons.js @@ -271,7 +271,6 @@ const STYLES_BUTTON_WARNING = css` cursor: pointer; color: ${Constants.system.white}; background-color: ${Constants.system.red}; - box-shadow: 0 0 0 1px ${Constants.system.bgGray} inset; :hover { backgroun...
2
diff --git a/src/renderable/container.js b/src/renderable/container.js @@ -28,13 +28,13 @@ class Container extends Renderable { * @param {number} [width=game.viewport.width] width of the container * @param {number} [height=game.viewport.height] height of the container */ - constructor(x = 0, y = 0, width = Infinity, he...
1
diff --git a/package.json b/package.json { "name": "pg-promise", - "version": "10.4.0", + "version": "10.3.2", "description": "PostgreSQL interface for Node.js", "main": "lib/index.js", "typings": "typescript/pg-promise.d.ts", "dependencies": { "assert-options": "0.6.0", "manakin": "0.5.2", - "pg": "7.15.1", + "pg": "7...
13
diff --git a/src/apps.json b/src/apps.json "html": [ "href=\"enter_bug\\.cgi\">", "<main id=\"bugzilla-body\"", + "<a href=\"https?://www\\.bugzilla\\.org/docs/([0-9.]+)/[^>]+>Help<\\;version:\\1", "<span id=\"information\" class=\"header_addl_info\">version ([\\d.]+)<\\;version:\\1" ], "cookies": {
7
diff --git a/CHANGELOG.md b/CHANGELOG.md ### Bugfix +## 7.4.1 + +### Bugfix + - Ensure a non-zero exit status code when build has errors ([#1451](https://github.com/react-static/react-static/pull/1451)) - Updated browser support docs for IE11 support ([#1461](https://github.com/react-static/react-static/pull/1461))
6
diff --git a/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js b/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js @@ -431,7 +431,15 @@ function publish( pkg, clbk ) { badges += '[![dependencies][dependencies-image]][dependencies-url]'; readme = replace( readme, /\n>/, '\n'+badges+'\n\n>' ); readme ...
9
diff --git a/packages/app/src/components/MaintenanceModeContent.tsx b/packages/app/src/components/MaintenanceModeContent.tsx @@ -25,10 +25,15 @@ const MaintenanceModeContent = () => { return ( <div className="text-left"> + {currentUser?.admin + && ( <p> <i className="icon-arrow-right"></i> <a className="btn btn-link" h...
7
diff --git a/src/electron.js b/src/electron.js @@ -473,7 +473,7 @@ function getLocalization() { // Get default localization file try { - const defaultFile = fs.readFileSync(path.join(__dirname, `/localization/default.json`)) + const defaultFile = fs.readFileSync(path.join(__dirname, `/localization/en.json`)) localizati...
12
diff --git a/tls_socket.js b/tls_socket.js @@ -174,6 +174,9 @@ if (ocsp) { if (err) { return cb2(err); } + if (uri === null) { // not working OCSP server + return cb2(); + } var req = ocsp.request.generate(cert, issuer); var options = {
9
diff --git a/src/js/demo/components/App.jsx b/src/js/demo/components/App.jsx @@ -77,7 +77,7 @@ export default class App extends Component { sourceType: "script", ecmaFeatures: {} }, - rules: rules.reduce((result, rule, ruleId) => { + rules: [...rules.entries()].reduce((result, [ruleId, rule]) => { if (rule.meta.docs.re...
1
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-18.04 strategy: matrix: - test-name: ['boostPayment', 'botCreation', 'chatPayment', 'cleanup', 'clearAllChats', 'clearAllContacts', 'contacts', 'images', 'latestTest', 'lsats', 'paidMeet', 'paidTri...
0
diff --git a/src/js/createTippy.js b/src/js/createTippy.js @@ -127,9 +127,9 @@ export default function createTippy(reference, collectionProps) { } /** - * Listener for the `followCursor` prop + * Positions the virtual reference near the mouse cursor */ - function followCursorListener(event) { + function positionVirtual...
10
diff --git a/website/src/docs/robodog.md b/website/src/docs/robodog.md @@ -25,14 +25,12 @@ Then, with a bundler such as [webpack][webpack] or [Browserify][browserify], do: const transloadit = require('@uppy/robodog') ``` -<!-- If you are not using a bundler, you can also import the Robodog using an HTML script tag. ```...
0
diff --git a/lib/node_modules/@stdlib/process/umask/lib/main.js b/lib/node_modules/@stdlib/process/umask/lib/main.js @@ -26,6 +26,7 @@ var fromSymbolic = require( './from_symbolic.js' ); * @param {boolean} [options.symbolic] - boolean indicating whether to return a mask using symbolic notation * @throws {TypeError} mus...
9
diff --git a/bin/logagent.js b/bin/logagent.js @@ -44,6 +44,7 @@ var moduleAlias = { // input filters grep: '../lib/plugins/input-filter/grep.js', + 'grok': 'logagent-input-filter-grok', // output filters sql: '../lib/plugins/output-filter/sql.js', 'access-watch': '../lib/plugins/output-filter/access-watch.js',
5
diff --git a/src/server/controller/user.js b/src/server/controller/user.js @@ -27,17 +27,19 @@ function checkReturnTo(req, res, next) { scope.push('admin:org_hook'); req.session.requiredScope = 'org_admin'; } - var returnTo = req.query.public === 'true' ? req.session.next : '/'; - if (returnTo) { - req.session.returnTo...
7
diff --git a/form/index.js b/form/index.js @@ -45,17 +45,23 @@ class TonicForm extends Tonic { validate () { const elements = this.getElements() + let isValid = true for (const el of elements) { if (!el.setInvalid) continue if (el.setValid) el.setValid() for (const key in el.validity) { - if (!el.validity[key]) el.setI...
7
diff --git a/lib/components/tabs.vue b/lib/components/tabs.vue <template> <div class="tabs"> - <div v-if="!bottom" :class="['tab-content',{'card-block': card}]" ref="tabsContainer"> + <div v-if="bottom" :class="['tab-content',{'card-block': card}]" ref="tabsContainer"> <slot></slot> <slot name="empty" v-if="!tabs || !t...
1
diff --git a/src/functionHelper.js b/src/functionHelper.js const { fork, spawn } = require('child_process') const { join, resolve } = require('path') -const objectFromEntries = require('object.fromentries') const trimNewlines = require('trim-newlines') const debugLog = require('./debugLog.js') const { createUniqueId, s...
2
diff --git a/scenes/shadows.scn b/scenes/shadows.scn }, { "position": [ - -6, - 1, - 15 + 20, + -1, + -4 ], "quaternion": [ 0, 0, 1 ], - "scale": [ - 0.5, - 0.5, - 0.5 - ], - "start_url": "https://webaverse.github.io/potion/" + "start_url": "https://webaverse.github.io/pistol/" } ] } \ No newline at end of file
0
diff --git a/app/http.php b/app/http.php @@ -20,7 +20,7 @@ ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); -$http = new Server("0.0.0.0", 80); +$http = new Server("0.0.0.0", App::getEnv('PORT', 80)); $payloadSize = max(4000000 /* 4mb */, App::getEnv('_APP_STORAGE_LIMIT', 1000...
12
diff --git a/source/gltf/image.js b/source/gltf/image.js @@ -20,10 +20,6 @@ class gltfImage extends GltfObject this.bufferView = bufferView; this.mimeType = mimeType; this.image = image; // javascript image - if (this.image !== undefined) - { - this.image.crossOrigin = ""; - } this.name = name; this.type = type; // non...
2
diff --git a/src/Route.js b/src/Route.js @@ -368,7 +368,13 @@ export default class Route { return _config._errorHandler(err, req, res); } - res.status(err.status || err.code || 400, true); + if (typeof err.status === 'number' && err.status !== 200) { + res.status(err.status); + } else if (typeof err.code === 'number' &...
1
diff --git a/src/Item.js b/src/Item.js @@ -23,6 +23,9 @@ const Player = require('./Player'); * @property {string} script A custom script for this item * @property {ItemType|string} type * @property {string} uuid UUID differentiating all instances of this item + * @property {boolean} closed Whether this item is closed +...
11
diff --git a/public/app/js/cbus-data.js b/public/app/js/cbus-data.js @@ -143,26 +143,38 @@ cbus.data.getEpisodeData = function(options) { var result = null; if (options.id) { - var filteredListA = cbus.data.episodes.filter(function(episode) { - return episode.id === options.id; - }); + var filteredA; + for (let i = 0, ...
7
diff --git a/src/sections/Community/community.style.js b/src/sections/Community/community.style.js @@ -155,7 +155,6 @@ const CommunitySectionWrapper = styled.div` .newcomers-section { background: ${props => props.theme.secondaryLightColor}; - width:100%; margin-top: 5rem; margin-bottom: 5rem; padding-top: 4rem;
1
diff --git a/userscript.user.js b/userscript.user.js @@ -24927,12 +24927,6 @@ var $$IMU_EXPORT$$; // https://cdn1.coppel.com/images/catalog/pr/1126002-1.jpg?iresize=width:300,height:240 // https://cdn1.coppel.com/images/catalog/pr/1094552-1.jpg?iresize=width:300,height:240 (domain_nosub === "coppel.com" && /^cdn[0-9]*\...
7
diff --git a/docs/content/concepts/Store.js b/docs/content/concepts/Store.js @@ -5,13 +5,13 @@ import {CodeSnippet} from 'docs/components/CodeSnippet'; import {Controller, LabelsTopLayout, LabelsLeftLayout} from 'cx/ui'; import {ImportPath} from 'docs/components/ImportPath'; import {MethodTable} from '../../components/...
0
diff --git a/src/serialize/window.js b/src/serialize/window.js @@ -151,6 +151,19 @@ export class ProxyWindow { win.focus(); }), setLocation: (href) => ZalgoPromise.try(() => { + // $FlowFixMe + if (isSameDomain(win)) { + try { + if (win.location && typeof win.location.replace === 'function') { + // $FlowFixMe + win.loc...
14
diff --git a/createTokens.js b/createTokens.js @@ -7,10 +7,10 @@ const notInList = JSON.parse(fs.readFileSync(notInListPath)); const api = 'https://api.coingecko.com/api/v3/coins/ethereum/contract'; const networks = { eth: 'https://nodes.mewapi.io/rpc/eth', - rop: 'wss://nodes.mewapi.io/rpc/rop', - kov: 'wss://nodes.me...
14
diff --git a/src/redux/Dispatch/reducers.js b/src/redux/Dispatch/reducers.js @@ -291,6 +291,15 @@ export default (state = initialState, action = {}) => { unassignedTasks: removeItem(state.unassignedTasks, data.task), taskLists: replaceTaskLists(state.taskLists, data.task), } + + case 'task:done': + case 'task:failed': ...
9
diff --git a/packages/node_modules/@node-red/nodes/core/function/10-function.html b/packages/node_modules/@node-red/nodes/core/function/10-function.html if (val === "_custom_") { val = $(this).val(); } - var varName = val.trim().replace(/^@/,"").replace(/@.*$/,"").replace(/[-_/].?/g, function(v) { return v[1]?v[1].toUp...
2
diff --git a/README.md b/README.md @@ -53,6 +53,11 @@ See the [Wiki](https://github.com/r-spacex/SpaceX-API/wiki) for API Documentatio "landing_vehicle": null, "links": { "mission_patch": "http://i.imgur.com/8URp6ea.png", + "reddit_campaign": "https://www.reddit.com/r/spacex/comments/6fw4yy/", + "reddit_launch": "https...
3
diff --git a/src/network/receive.ts b/src/network/receive.ts @@ -259,7 +259,7 @@ async function onReceive(payload: Payload, dest: string) { }, })) as MessageRecord[] const contact = (await models.Contact.findOne({ - where: { publicKey: payload.sender.pub_key }, + where: { publicKey: payload.sender.pub_key, tenant }, })...
3
diff --git a/userscript.user.js b/userscript.user.js @@ -1209,7 +1209,8 @@ var $$IMU_EXPORT$$; "<li><code>google.com/**/test</code> will block https://google.com/abc/test, https://google.com/abc/def/test, https://google.com/abc/def/ghi/test, etc. but not https://google.com/test</li>", "<li><code>g??gle.com</code> will ...
7
diff --git a/app/modules/main/containers/Sections/Home.js b/app/modules/main/containers/Sections/Home.js @@ -63,7 +63,7 @@ class HomeContainer extends Component<Props> { wallets.length > 0 && settings.walletHash && wallets.filter((w) => w.version === 1).length > 0 - && !storage.data + && !storage.keys ); let interrupt;...
1
diff --git a/index.html b/index.html @@ -19,7 +19,7 @@ layout: landing <div class="ui medium inverted header"> To contribute all you need is a <a href="https://www.google.ch/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwig3Zb8wMTVAhUPmbQKHU31DbwQFggoMAA&url=https%3A%2F%2Fgithub.com%2Fjoin&usg=AFQjC...
1
diff --git a/appjs/complexlogic.js b/appjs/complexlogic.js @@ -609,12 +609,12 @@ document.getElementById("stressans").innerHTML=ans; function arcal() { - var a=document.getElementById("ang").value; + var a=document.getElementById("ang12").value; var b=document.getElementById("rad").value; var y=document.getElementById(...
1
diff --git a/src/layouts/index.js b/src/layouts/index.js @@ -21,7 +21,7 @@ const HeaderWrapper = styled(Header)` `}; `; -const TemplateWrapper = ({ data, children }) => ( +const TemplateWrapper = ({ data, children, location }) => ( <div> <Helmet title={data.site.siteMetadata.title}
1
diff --git a/templates/actor-sheet-gcs.html b/templates/actor-sheet-gcs.html <div> {{#if useCI}} <div id='combat-hit' class='conditional-injury'> - {{#with data.conditionalinjury}} <div class='header major-heading'>Injury</div> <div class="tracked-resource no-border"> <div class="header minor-heading">Severity</div> <d...
1
diff --git a/app/hotels/src/map/allHotels/HotelSwipeList.js b/app/hotels/src/map/allHotels/HotelSwipeList.js @@ -59,7 +59,9 @@ class HotelSwipeList extends React.Component<Props, State> { carouselRef: React.ElementRef<typeof Carousel>; componentDidUpdate = () => { + if (this.carouselRef) { this.carouselRef.snapToItem(t...
0
diff --git a/src/ApiGateway.js b/src/ApiGateway.js @@ -318,23 +318,23 @@ module.exports = class ApiGateway { const { requestTemplates } = endpoint // Prefix must start and end with '/' BUT path must not end with '/' - let fullPath = + let hapiPath = this._options.prefix + (epath.startsWith('/') ? epath.slice(1) : epath...
10
diff --git a/generators/client/templates/common/src/main/webapp/swagger-ui/index.html.ejs b/generators/client/templates/common/src/main/webapp/swagger-ui/index.html.ejs return null; }; const axiosConfig = { - headers: { timeout: 5000, Authorization: getBearerToken() }, + timeout: 5000, + headers: { Authorization: getBe...
7
diff --git a/src/Model.d.ts b/src/Model.d.ts @@ -177,29 +177,29 @@ export class Paged<T> extends Array { export type AnyModel = { constructor(table: any, name: string, options?: ModelConstructorOptions): AnyModel; create(properties: OneProperties, params?: OneParams): Promise<AnyEntity>; - find(properties?: OneProperti...
1
diff --git a/js/webcomponents/bisweb_orthogonalviewerelement.js b/js/webcomponents/bisweb_orthogonalviewerelement.js @@ -1151,7 +1151,10 @@ class OrthogonalViewerElement extends BaseViewerElement { // The middle -- set the parameters try { let ind=this.internal.displaymodes.indexOf(sanedata['displaymode']); + if (ind>=...
3
diff --git a/packages/diffhtml/lib/tasks/patch-node.js b/packages/diffhtml/lib/tasks/patch-node.js -import patchNode from '../node/patch'; +import patch from '../node/patch'; import Transaction from '../transaction'; import { CreateNodeHookCache, VTree } from '../util/types'; import globalThis from '../util/global'; @@...
10
diff --git a/UserReviewBanHelper.user.js b/UserReviewBanHelper.user.js // @description Display users' prior review bans in review, Insert review ban button in user review ban history page, Load ban form for user if user ID passed via hash // @homepage https://github.com/samliew/SO-mod-userscripts // @author @samliew -/...
2
diff --git a/src/domain/navigation/index.js b/src/domain/navigation/index.js @@ -35,7 +35,7 @@ function allowsChild(parent, child) { return type === "room" || type === "rooms" || type === "settings"; case "rooms": // downside of the approach: both of these will control which tile is selected - return type === "room" ||...
11
diff --git a/includes/Core/Authentication/Authentication.php b/includes/Core/Authentication/Authentication.php @@ -391,7 +391,6 @@ final class Authentication { // Handles Direct OAuth client request. if ( filter_input( INPUT_GET, 'oauth2callback' ) ) { $auth_client->authorize_user(); - exit; } if ( ! is_admin() ) {
2
diff --git a/quasar/dev/components/components/list-expansion-item.vue b/quasar/dev/components/components/list-expansion-item.vue <p class="caption">On dark Background</p> <q-expansion-item dark class="bg-black" icon="shopping_cart" label="Toggle me"> - <q-card dark> + <q-card dark class="bg-black"> <q-card-section> {{ ...
1
diff --git a/.vscode/settings.json b/.vscode/settings.json "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false, "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false, - "javasc...
3
diff --git a/app/controllers/carto/api/visualization_presenter.rb b/app/controllers/carto/api/visualization_presenter.rb @@ -16,7 +16,7 @@ module Carto @context = context @related = related - @related_canonical_visualizations = related_canonical_visualizations + @load_related_canonical_visualizations = related_canonica...
10
diff --git a/addon/components/paper-button.js b/addon/components/paper-button.js @@ -33,7 +33,8 @@ export default Component.extend(FocusableMixin, RippleMixin, ColorMixin, Proxiab 'type', 'href', 'target', - 'title' + 'title', + 'download' ], classNameBindings: [ 'raised:md-raised',
11
diff --git a/src/article/JATS4R.rng b/src/article/JATS4R.rng <optional><ref name="article-title"/></optional> <optional><ref name="chapter-title"/></optional> <optional><ref name="comment"/></optional> + <optional><ref name="collab"/></optional> <optional><ref name="edition"/></optional> <optional><ref name="elocation-...
11
diff --git a/src/config/config.js b/src/config/config.js -import { once } from 'lodash' +import { noop, once } from 'lodash' import moment from 'moment' import { version as contractsVersion } from '../../node_modules/@gooddollar/goodcontracts/package.json' import { version } from '../../package.json' @@ -13,7 +13,9 @@ ...
0
diff --git a/scenes/treehouse.scn b/scenes/treehouse.scn "start_url": "/avatars/gear.vrm", "dynamic": true }, + { + "position": [ + 4, + 0, + 3 + ], + "quaternion": [ + 0, + 0, + 0, + 1 + ], + "physics": false, + "start_url": "https://webaverse.github.io/infinifruit/", + "dynamic": true + }, { "position": [ -13,
0
diff --git a/src/routes.json b/src/routes.json "title": "Microworlds" }, { - "name": "preview", - "pattern": "^/preview(/editor|(/\\d+(/editor|/fullscreen)?)?)?/?(\\?.*)?$", - "routeAlias": "/preview/?$", + "name": "projects", + "pattern": "^/projects(/editor|(/\\d+(/editor|/fullscreen)?)?)?/?(\\?.*)?$", + "routeAlias"...
10
diff --git a/plugins/debug/debugPanel.js b/plugins/debug/debugPanel.js // patch timer.js me.plugin.patch(me.timer, "update", function (dt) { // call the original me.timer.update function - this._patched(dt); + this._patched.apply(this, arguments); // call the FPS counter me.timer.countFPS(); me.plugin.patch(me.game, "u...
1
diff --git a/rules.json b/rules.json ".validate": "newData.hasChildren(['type', 'content'])", // Make sure the type is text "type": { - ".validate": "newData.val() === 'text' || newData.val() === 'media'" - }, - "content": { - ".validate": "newData.exists()" + ".validate": "newData.val() === 'text' || newData.val() ===...
11
diff --git a/pages/release notes/TypeScript 3.7.md b/pages/release notes/TypeScript 3.7.md * [Assertion Functions](#assertion-functions) * [Better Support for `never`-Returning Functions](#better-support-for-never-returning-functions) * [(More) Recursive Type Aliases](#more-recursive-type-aliases) -* [`--declaration` a...
1
diff --git a/renderer/components/UI/Button.js b/renderer/components/UI/Button.js @@ -81,7 +81,7 @@ const Button = React.forwardRef((props, ref) => { > {isProcessing || Icon ? ( <Flex alignItems="center" justifyContent="center"> - {isProcessing ? <Spinner /> : Icon && <Icon />} + {isProcessing ? <Spinner height="0.8em" ...
1